5 Speed Options for HTML5 videos
Allows users to store 5 different speed options and access them with keyboard shortcuts
Cos'è 5 Speed Options for HTML5 videos?
5 Speed Options for HTML5 videos è un'estensione di Chrome sviluppata da h-1, e la sua funzione principale è "Allows users to store 5 different speed options and access them with keyboard shortcuts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione 5 Speed Options for HTML5 videos
Scarica i file di estensione 5 Speed Options for HTML5 videos in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | jgcledljkklfpfbidpfogmcihiphjibn |
URL Ufficiale | https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn |
Descrizione | Allows users to store 5 different speed options and access them with keyboard shortcuts |
Dimensione del File | 12.54 KB |
Conteggio Installazioni | 341 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2018-10-03 |
Data di Pubblicazione | 2018-10-03 |
Valutazione | 4.56/5 Totale 9 Valutazioni |
Sviluppatore | h-1 |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/h-1/5SpeedOptions |
URL della Pagina di Aiuto | https://github.com/h-1/5SpeedOptions |
Lingue Supportate | 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" ] } ] } |