33 lines
710 B
JSON
33 lines
710 B
JSON
{
|
|
"name": "__MSG_appName__",
|
|
"short_name": "__MSG_appShortName__",
|
|
"description": "__MSG_appDescription__",
|
|
"version": "0.0.0",
|
|
"manifest_version": 2,
|
|
"default_locale": "en",
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"scripts/background.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://*/*", "http://*/*"],
|
|
"all_frames": true,
|
|
"js": ["scripts/running.js"]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"19": "images/icon-19.png",
|
|
"38": "images/icon-38.png"
|
|
},
|
|
"default_title": "__MSG_browserActionTitle__",
|
|
"default_popup": "pages/popup.html"
|
|
}
|
|
}
|