mirror of
https://github.com/zhigang1992/AlwaysHTTPS.git
synced 2026-01-12 16:14:10 +08:00
36 lines
640 B
JSON
36 lines
640 B
JSON
{
|
|
"name": "__MSG_appName__",
|
|
"version": "0.0.1",
|
|
"manifest_version": 2,
|
|
"description": "__MSG_appDescription__",
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"default_locale": "en",
|
|
"background": {
|
|
"scripts": [
|
|
"scripts/chromereload.js",
|
|
"scripts/background.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"js": [
|
|
"scripts/contentscript.js"
|
|
],
|
|
"run_at": "document_end",
|
|
"all_frames": false
|
|
}
|
|
]
|
|
}
|