Files
TheOrangeMan/app/manifest.json
Tommy Parnell 2dcd6e6b83 init
2019-08-28 09:42:28 -04:00

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"
}
}