Files
videospeed/manifest.json
Radu Filip dfb86cd287 Options Page adjustments
Implemented the adjustments suggested by Ilya: default values
adjustments, input validation, UI
2014-08-16 11:53:34 +01:00

21 lines
668 B
JSON
Executable File

{
"name": "HTML5 Video Playback Speed Controller",
"version": "0.1.3",
"manifest_version": 2,
"description": "Lean in and speed up your video learning with handy shortcuts to accelerate, slow-down, and rewind your video via your keyboard.",
"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",
"content_scripts": [{
"all_frames": true,
"matches": [ "http://*/*", "https://*/*"],
"css": [ "inject.css" ],
"js": [ "inject.js" ]
}
]
}