HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
Cos'è HTML5 Speedy Video?
HTML5 Speedy Video è un'estensione di Chrome sviluppata da ricardobcl, e la sua funzione principale è "This extension adds fine-grained playback speed control on HTML5 videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HTML5 Speedy Video
Scarica i file di estensione HTML5 Speedy Video 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
It also adds these simple keyboard shortcuts:
| Key | Action |
| ------------------ | ---------------------- |
| control + `+` | Speed up by 0.2x |
| control + `-` | Slow down by 0.2x |
| control + `0` | Set speed to 1x |
| control + `1` | Set speed to 1x |
| control + `2` | Set speed to 2x |
| control + `3` | Set speed to 2.5x |
| control + `4` | Set speed to 3x |
| shift + :arrow_left: | \*\* Rewind 2 seconds |
| shift + :arrow_right: | \*\* Skip 2 seconds |
| shift + :arrow_down: | \*\* Rewind 10 seconds |
| shift + :arrow_up: | \*\* Skip 10 seconds | Informazioni di Base sull'Estensione
| Nome | |
| ID | caogcofklddclhfojcbmccggaohjngmh |
| URL Ufficiale | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
| Descrizione | This extension adds fine-grained playback speed control on HTML5 videos. |
| Dimensione del File | 42.12 KB |
| Conteggio Installazioni | 541 |
| Versione Corrente | 2.1 |
| Ultimo Aggiornamento | 2018-09-06 |
| Data di Pubblicazione | 2018-09-06 |
| Valutazione | 4.00/5 Totale 3 Valutazioni |
| Sviluppatore | ricardobcl |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HTML5 Speedy Video",
"version": "2.1",
"description": "This extension adds fine-grained playback speed control on HTML5 videos.",
"offline_enabled": true,
"icons": {
"32": "icons\/Icon-32.png",
"64": "icons\/Icon-64.png",
"128": "icons\/Icon-128.png",
"256": "icons\/Icon-256.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.netflix.com\/*",
"https:\/\/www.netflix.com\/*",
"http:\/\/vimeo.com\/*",
"https:\/\/vimeo.com\/*",
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_idle",
"css": [
"style.css"
],
"js": [
"speedy.js"
]
}
]
} | |