Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Was ist Video Speed Control HTML5?
Video Speed Control HTML5 ist eine Chrome-Erweiterung, die von admin entwickelt wurde, und ihr Hauptmerkmal ist "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".
Erweiterungsscreenshots
Video Speed Control HTML5-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Speed Control HTML5-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
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Grundlegende Informationen zur Erweiterung
Name | |
ID | pgeeiieaichainfdhpdanloeimnpofhl |
Offizielle URL | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
Beschreibung | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
Dateigröße | 60.54 KB |
Installationsanzahl | 884 |
Aktuelle Version | 1.1.2 |
Letztes Update | 2022-10-23 |
Veröffentlichungsdatum | 2022-10-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | admin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Control HTML5", "version": "1.1.2", "manifest_version": 3, "minimum_chrome_version": "89", "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.", "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "bg.js" }, "permissions": [ "storage", "webRequest", "tabs" ], "options_ui": { "page": "html5\/options.html", "open_in_tab": true }, "action": { "default_icon": { "64": "images\/icon64.png" }, "default_popup": "html5\/popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*" ], "css": [ "inject\/inject.css" ], "js": [ "inject\/inject.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ct.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ] } |