Files
videospeed/manifest.json
Ilya Grigorik 2965ec345d initial import
2014-03-02 14:44:20 -08:00

21 lines
881 B
JSON
Executable File

{
"name": "HTML5 Video Playback Speed Controller",
"version": "0.1.0",
"manifest_version": 2,
"description": "Lean in and speed up your video learning with handy shortcuts to accelerate, slow-down, and rewind your video right from your keyboard. This extension adds a handy video controller to any HTML5 video, regardless of the type of player. Shortcuts: 'a' for rewind, 's' for slower, and 'd' for faster playback. To remove the controller simply click on the speed indicator in the top right.",
"homepage_url": "https://github.com/igrigorik/videospeed",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [ "activeTab" ],
"content_scripts": [{
"all_frames": true,
"matches": [ "http://*/*", "https://*/*"],
"css": [ "inject.css" ],
"js": [ "inject.js" ]
}
]
}