Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Cos'è Video Speed Control HTML5?
Video Speed Control HTML5 è un'estensione di Chrome sviluppata da admin, e la sua funzione principale è "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Speed Control HTML5
Scarica i file di estensione Video Speed Control HTML5 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
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. Informazioni di Base sull'Estensione
| Nome | |
| ID | pgeeiieaichainfdhpdanloeimnpofhl |
| URL Ufficiale | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
| Descrizione | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
| Dimensione del File | 60.54 KB |
| Conteggio Installazioni | 884 |
| Versione Corrente | 1.1.2 |
| Ultimo Aggiornamento | 2022-10-23 |
| Data di Pubblicazione | 2022-10-23 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | admin |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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:\/\/\/*"
]
}
]
} | |