Files
videospeed/manifest.json
Gitoffthelawn 66cd77f572 Manifest Improvements
1) Removed deprecated URL.
   a. That old hitbox.tv URL does redirect somewhere else now.  Does that site need to be excluded?
   b. Why are sites excluded here vs. being added to the default exclusions list in Options?
2) Shortened description and added "audio" to reflect new functionality
3) The Firefox fork of this extension benefits from adding:
     "options_ui": {
         "page": "options.html"
     }
Would it hurt to add that to this manifest too?
2020-03-28 02:09:28 -07:00

39 lines
1.0 KiB
JSON
Executable File

{
"name": "Video Speed Controller",
"short_name": "videospeed",
"version": "0.6.1",
"manifest_version": 2,
"description": "Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts",
"homepage_url": "https://github.com/igrigorik/videospeed",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": ["activeTab", "storage"],
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": ["http://*/*", "https://*/*", "file:///*"],
"match_about_blank": true,
"exclude_matches": [
"https://plus.google.com/hangouts/*",
"https://hangouts.google.com/*",
"https://meet.google.com/*"
],
"css": ["inject.css"],
"js": ["inject.js"]
}
],
"web_accessible_resources": ["inject.css", "shadow.css"]
}