added functionality to allow user to save Video Speed in Chrome Sync Storage via Chrome Extensions's Browser Action and automated the process to apply user saved Video Speed to HTML5 videos

This commit is contained in:
Apoorv Saxena
2014-06-06 03:54:15 +05:30
parent 279c957f24
commit 4ec4a2d385
4 changed files with 114 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "HTML5 Video Playback Speed Controller",
"version": "0.1.1",
"version": "0.1.2",
"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",
@@ -9,12 +9,17 @@
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [ "activeTab" ],
"permissions": [ "activeTab", "storage" ],
"content_scripts": [{
"all_frames": true,
"matches": [ "http://*/*", "https://*/*"],
"css": [ "inject.css" ],
"js": [ "inject.js" ]
}
]
}
],
"browser_action": {
"default_icon": "icons/icon16.png",
"default_title": "Video Playback Speed Controller",
"default_popup": "browser_action.html"
}
}