Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Video Speed Memory",
"version": "1.0.0",
"description": "Remember playback speeds for every video. Never adjust speed manually again.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.netflix.com\/*",
"*:\/\/*.vimeo.com\/*",
"*:\/\/*.udemy.com\/*",
"*:\/\/*.coursera.org\/*",
"*:\/\/*.twitch.tv\/*",
"*:\/\/*.dailymotion.com\/*",
"*:\/\/*.hulu.com\/*",
"*:\/\/*.spotify.com\/*",
"*:\/\/*.soundcloud.com\/*",
"*:\/\/*.ted.com\/*",
"*:\/\/*.khanacademy.org\/*",
"*:\/\/*.skillshare.com\/*",
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.reddit.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.netflix.com\/*",
"*:\/\/*.vimeo.com\/*",
"*:\/\/*.udemy.com\/*",
"*:\/\/*.coursera.org\/*",
"*:\/\/*.twitch.tv\/*",
"*:\/\/*.dailymotion.com\/*",
"*:\/\/*.hulu.com\/*",
"*:\/\/*.spotify.com\/*",
"*:\/\/*.soundcloud.com\/*",
"*:\/\/*.ted.com\/*",
"*:\/\/*.khanacademy.org\/*",
"*:\/\/*.skillshare.com\/*",
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.reddit.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"commands": {
"speed-1.0": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Set speed to 1.0x"
},
"speed-1.5": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "Set speed to 1.5x"
},
"speed-2.0": {
"suggested_key": {
"default": "Ctrl+Shift+3"
},
"description": "Set speed to 2.0x"
},
"increase-speed": {
"suggested_key": {
"default": "Ctrl+Shift+Period"
},
"description": "Increase speed by 0.25x"
}
}
}