Inspect and view changes in One Page Favorites source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0",
"author": "William Wong",
"default_locale": "en",
"icons": {
"48": "icons/app-48x48.png",
"96": "icons/app-96x96.png",
"144": "icons/app-144x144.png",
"240": "icons/app-240x240.png"
},
"permissions": [
"storage",
"tabs",
"bookmarks",
"history"
],
"background": {
"service_worker": "background/background_daemon.js",
"type": "module"
},
"options_ui": {
"page": "options/one_page_options.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"48": "icons/app-48x48.png",
"96": "icons/app-96x96.png",
"144": "icons/app-144x144.png",
"240": "icons/app-240x240.png"
},
"default_title": "__MSG_browser_action_title__"
},
"commands": {
"activate": {
"suggested_key": {
"default": "Alt+L"
},
"description": "Launch the One Page Favorites extension page."
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}