54 lines
1019 B
JSON
54 lines
1019 B
JSON
|
{
|
||
|
"description": "[MODIFIED BY ME] Stops video autoplay gracefully.",
|
||
|
"manifest_version": 2,
|
||
|
"name": "AutoplayStopper",
|
||
|
"version": "1.8.7",
|
||
|
|
||
|
"default_locale": "en",
|
||
|
|
||
|
"icons": {
|
||
|
"32": "icons/icon32.png",
|
||
|
"48": "icons/icon48.png"
|
||
|
},
|
||
|
|
||
|
"permissions": [
|
||
|
"http://*/*", "https://*/*",
|
||
|
"tabs",
|
||
|
"contextMenus",
|
||
|
"storage",
|
||
|
"webNavigation"
|
||
|
],
|
||
|
|
||
|
"background": {
|
||
|
"scripts": ["utils.js", "background.js"]
|
||
|
},
|
||
|
|
||
|
"browser_action": {
|
||
|
"default_icon": {
|
||
|
"32": "icons/icon32.png"
|
||
|
},
|
||
|
"default_title": "AutoplayStopper",
|
||
|
"default_popup": "skin/popup.html",
|
||
|
"browser_style": true
|
||
|
},
|
||
|
|
||
|
"content_scripts": [
|
||
|
{
|
||
|
"run_at": "document_start",
|
||
|
"all_frames": true,
|
||
|
"match_about_blank": true,
|
||
|
"matches": ["http://*/*", "https://*/*"],
|
||
|
"js": ["content/handler-utils.js", "content/content.js"]
|
||
|
}],
|
||
|
|
||
|
"options_ui": {
|
||
|
"chrome_style": true,
|
||
|
"browser_style": true,
|
||
|
"page": "skin/options.html"
|
||
|
},
|
||
|
|
||
|
"devtools_page": "skin/devtools.html?view=page",
|
||
|
|
||
|
"optional_permissions": ["file://*/*"]
|
||
|
}
|