a simple right menu search extension
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": 2,
"name": "__MSG_name__",
"version": "1.0.1",
"default_locale": "zh_CN",
"description": "__MSG_desc__",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"64": "icon/64.png",
"128": "icon/128.png"
},
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_icon": "icon/128.png"
},
"permissions": [
"contextMenus",
"tabs",
"storage"
],
"homepage_url": "https://www.justsoso.tech",
"options_page": "dist/index.html",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}