Audio/Video Playback Speed Controller
A simple interface to control the playback speed of audio and video elements in a webpage.
Was ist Audio/Video Playback Speed Controller?
Audio/Video Playback Speed Controller ist eine Chrome-Erweiterung, die von Chris Gallegos entwickelt wurde, und ihr Hauptmerkmal ist "A simple interface to control the playback speed of audio and video elements in a webpage.".
Erweiterungsscreenshots
Audio/Video Playback Speed Controller-Erweiterungs-CRX-Datei herunterladen
Laden Sie Audio/Video Playback Speed Controller-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
Controls the playback speed of all audio and video elements on a webpage. Features: - No permissions required - 5 preset speeds - Custom speed slider color coded to indicate fast-forward/slow-motion: - Green means normal speed - Cyan means fast-forward - Red means slow-motion - Custom speed slider snaps into place for common speeds - Speed setting is automatically saved for each individual webpage
Grundlegende Informationen zur Erweiterung
Name | Audio/Video Playback Speed Controller |
ID | adibdjpkkmpgfidnjngnfdpcghohhbmm |
Offizielle URL | https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm |
Beschreibung | A simple interface to control the playback speed of audio and video elements in a webpage. |
Dateigröße | 450 KB |
Installationsanzahl | 15,128 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-01-10 |
Veröffentlichungsdatum | 2020-04-30 |
Bewertung | 4.44/5 Insgesamt 27 Bewertungen |
Entwickler | Chris Gallegos |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | http://gallegosaudio.com/Extensions-Privacy-Policy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audio\/Video Playback Speed Controller", "short_name": "Playback Controller", "version": "1.1", "description": "A simple interface to control the playback speed of audio and video elements in a webpage.", "browser_action": { "default_title": "Playback Controller", "default_popup": "popup.html", "default_icon": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab" ], "icons": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } } |