Initial code publish.
This commit is contained in:
38
src/manifest.json
Normal file
38
src/manifest.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Better Youtube +",
|
||||
"version": "1.0.8",
|
||||
"description": "Enhancements for Youtube to have a better experience.",
|
||||
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "betterYoutube@itdominator.com"
|
||||
}
|
||||
},
|
||||
|
||||
"permissions": [
|
||||
"activeTab",
|
||||
"*://*.youtube.com/*",
|
||||
"tabs"
|
||||
],
|
||||
|
||||
"icons": {
|
||||
"48": "icons/betterYoutube.svg",
|
||||
"96": "icons/betterYoutube.svg"
|
||||
},
|
||||
|
||||
"options_ui": { "page": "pages/options.html" },
|
||||
|
||||
"content_scripts": [ {
|
||||
"matches": ["*://*.youtube.com/watch?v=*"],
|
||||
"js": ["scripts/jquery-3.2.1.js", "scripts/arrive.js", "scripts/betterYoutube.js"],
|
||||
"css": ["styles/betterYoutube.css"],
|
||||
"run_at": "document_end",
|
||||
"all_frames": true
|
||||
}],
|
||||
|
||||
"web_accessible_resources": [
|
||||
"icons/*.png"
|
||||
]
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user