Skip to content

Commit bca043a

Browse files
committed
fix: basic repair context-menu script broken
1 parent 45729ee commit bca043a

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

src/ext/background/main.js

-29
Original file line numberDiff line numberDiff line change
@@ -224,33 +224,7 @@ async function getContextMenuItems() {
224224
}
225225

226226
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
239227
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-
254228
browser.menus.create(
255229
{
256230
contexts: ["all"],
@@ -263,9 +237,6 @@ async function addContextMenuItem(userscript) {
263237
if (!browser.menus.onClicked.hasListener(contextClick)) {
264238
browser.menus.onClicked.addListener(contextClick);
265239
}
266-
// save the context-menu item reference to sessionStorage
267-
const value = JSON.stringify([userscript.scriptObject.filename]);
268-
sessionStorage.setItem("menu", value);
269240
},
270241
);
271242
}

0 commit comments

Comments
 (0)