mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-22 02:18:45 -04:00

Implemented the adjustments suggested by Ilya: default values adjustments, input validation, UI
21 lines
668 B
JSON
Executable File
21 lines
668 B
JSON
Executable File
{
|
|
"name": "HTML5 Video Playback Speed Controller",
|
|
"version": "0.1.3",
|
|
"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",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": [ "activeTab", "storage" ],
|
|
"options_page": "options.html",
|
|
"content_scripts": [{
|
|
"all_frames": true,
|
|
"matches": [ "http://*/*", "https://*/*"],
|
|
"css": [ "inject.css" ],
|
|
"js": [ "inject.js" ]
|
|
}
|
|
]
|
|
} |