Post

Replies

Boosts

Views

Activity

Reply to Context menu item disappears in converted Safari Web Extension
Apparently there is a bug that context menus are not persisted between loads / launches. So I deleted this part: chrome.runtime.onInstalled.addListener(function() { and with just this it works fine: chrome.contextMenus.create({				 "title": chrome.i18n.getMessage("contextMenu"),				 "contexts": ["selection"],				 "id": "selection"		 });
Nov ’20