HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
Was ist HTML5 Speedy Video?
HTML5 Speedy Video ist eine Chrome-Erweiterung, die von ricardobcl entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds fine-grained playback speed control on HTML5 videos.".
Erweiterungsscreenshots
HTML5 Speedy Video-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTML5 Speedy Video-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 | Grundlegende Informationen zur Erweiterung
| Name | |
| ID | caogcofklddclhfojcbmccggaohjngmh |
| Offizielle URL | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
| Beschreibung | This extension adds fine-grained playback speed control on HTML5 videos. |
| Dateigröße | 42.12 KB |
| Installationsanzahl | 541 |
| Aktuelle Version | 2.1 |
| Letztes Update | 2018-09-06 |
| Veröffentlichungsdatum | 2018-09-06 |
| Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
| Entwickler | ricardobcl |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
| Unterstützte Sprachen | 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"
]
}
]
} | |