add popup page

This commit is contained in:
Ilya Grigorik
2014-08-24 23:01:03 -07:00
parent 724ec1ada3
commit 33da3f2a5e
4 changed files with 62 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
{
"name": "HTML5 Video Playback Speed Controller",
"version": "0.1.3",
"name": "Video Speed Controller",
"version": "0.2.0",
"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.",
"description": "Speed up, slow down, and rewind any HTML5 video with quick shortcuts.",
"homepage_url": "https://github.com/igrigorik/videospeed",
"icons": {
"16": "icons/icon16.png",
@@ -11,6 +11,14 @@
},
"permissions": [ "activeTab", "storage" ],
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19": "images/icon16.png",
"38": "images/icon48.png"
},
"default_icon": "icons/icon48.png",
"default_popup": "popup.html"
},
"content_scripts": [{
"all_frames": true,
"matches": [ "http://*/*", "https://*/*"],
@@ -18,4 +26,4 @@
"js": [ "inject.js" ]
}
]
}
}