5 Speed Options for HTML5 videos
Allows users to store 5 different speed options and access them with keyboard shortcuts
Hvad er 5 Speed Options for HTML5 videos?
5 Speed Options for HTML5 videos er en Chrome-udvidelse udviklet af h-1, og dens hovedfunktion er "Allows users to store 5 different speed options and access them with keyboard shortcuts".
Udvidelsesskærmbilleder
Download 5 Speed Options for HTML5 videos-udvidelses-CRX-fil
Download 5 Speed Options for HTML5 videos-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Allows users to store 5 different speed options and access them with keyboard shortcuts. 5SpeedOptions is heavily influenced by Video Speed Controller Developer: https://github.com/igrigorik Video Speed Controller code: https://github.com/igrigorik/videospeed Chrome extension: https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk Icon made by Freepik from www.flaticon.com http://www.flaticon.com/free-icon/number-5_1875
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | jgcledljkklfpfbidpfogmcihiphjibn |
Officiel URL | https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn |
Beskrivelse | Allows users to store 5 different speed options and access them with keyboard shortcuts |
Filstørrelse | 12.54 KB |
Antal Installationer | 341 |
Nuværende Version | 1.3 |
Senest Opdateret | 2018-10-03 |
Udgivelsesdato | 2018-10-03 |
Bedømmelse | 4.56/5 Samlet 9 Bedømmelser |
Udvikler | h-1 |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/h-1/5SpeedOptions |
Hjælpeside-URL | https://github.com/h-1/5SpeedOptions |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "5 Speed Options for HTML5 videos", "description": "Allows users to store 5 different speed options and access them with keyboard shortcuts", "version": "1.3", "homepage_url": "https:\/\/github.com\/h-1\/5SpeedOptions", "permissions": [ "storage" ], "options_page": "options.html", "icons": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png", "128": "icons\/Number_5_128.png" }, "browser_action": { "default_icon": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png" }, "default_popup": "options.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inject.js" ], "css": [ "inject.css" ] } ] } |