Inspect and view changes in navcrx 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": "navcrx",
"description": "常用网å€å¯¼èˆª+代ç 片段æœç´¢",
"version": "1.0.0",
"action": {
"default_title": "navcrx",
"default_icon": "assets/logo.png",
"default_popup": "pages/popup.html"
},
"permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "assets/logo.png",
"48": "assets/logo.png",
"128": "assets/logo.png"
},
"content_security_policy": {
"script-src": "'self' 'unsafe-eval'",
"object-src": "self"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"options_page": "pages/options.html",
"web_accessible_resources": [
{
"resources": [
"/assets/index.html",
"/assets/create-crx-app.png",
"/assets/logo.png"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}