@@ -224,33 +224,7 @@ async function getContextMenuItems() {
224
224
}
225
225
226
226
async function addContextMenuItem ( userscript ) {
227
- // context-menu items persist for a session
228
- // to avoid duplication, when created, save the filename to session storage
229
- const savedItems = sessionStorage . getItem ( "menu" ) ;
230
- // if the session storage key doesn't exist use empty array
231
- const activeItems = savedItems ? JSON . parse ( savedItems ) : [ ] ;
232
- if ( activeItems . indexOf ( userscript . scriptObject . filename ) !== - 1 ) {
233
- // if already saved, remove it, to get fresh code changes
234
- await browser . menus . remove ( userscript . scriptObject . filename ) ;
235
- }
236
- // potential bug? https://developer.apple.com/forums/thread/685273
237
- // https://stackoverflow.com/q/68431201
238
- // parse through match values and change pathnames to deal with bug
239
227
const patterns = userscript . scriptObject . matches ;
240
- patterns . forEach ( ( pattern , index ) => {
241
- try {
242
- const url = new URL ( pattern ) ;
243
- let pathname = url . pathname ;
244
- if ( pathname . length > 1 && pathname . endsWith ( "/" ) ) {
245
- pathname = pathname . slice ( 0 , - 1 ) ;
246
- }
247
- patterns [ index ] = `${ url . protocol } //${ url . hostname } ${ pathname } ` ;
248
- } catch ( error ) {
249
- // prevent breaking when non-url pattern present
250
- console . error ( error ) ;
251
- }
252
- } ) ;
253
-
254
228
browser . menus . create (
255
229
{
256
230
contexts : [ "all" ] ,
@@ -263,9 +237,6 @@ async function addContextMenuItem(userscript) {
263
237
if ( ! browser . menus . onClicked . hasListener ( contextClick ) ) {
264
238
browser . menus . onClicked . addListener ( contextClick ) ;
265
239
}
266
- // save the context-menu item reference to sessionStorage
267
- const value = JSON . stringify ( [ userscript . scriptObject . filename ] ) ;
268
- sessionStorage . setItem ( "menu" , value ) ;
269
240
} ,
270
241
) ;
271
242
}
0 commit comments