mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
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:
@@ -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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user