initial import

This commit is contained in:
Ilya Grigorik
2014-03-02 14:44:20 -08:00
commit 2965ec345d
9 changed files with 176 additions and 0 deletions

20
manifest.json Executable file
View File

@@ -0,0 +1,20 @@
{
"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" ]
}
]
}