Auto Pause Video
Automatically pauses html 5 videos after a page loads
Cos'è Auto Pause Video?
Auto Pause Video è un'estensione di Chrome sviluppata da kfegen, e la sua funzione principale è "Automatically pauses html 5 videos after a page loads".
Scarica il file CRX dell'estensione Auto Pause Video
Scarica i file di estensione Auto Pause 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
A simple extension that pauses videos when the page is loaded.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
URL Ufficiale | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
Descrizione | Automatically pauses html 5 videos after a page loads |
Dimensione del File | 3.19 KB |
Conteggio Installazioni | 91 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-06-05 |
Data di Pubblicazione | 2014-06-05 |
Valutazione | 3.33/5 Totale 6 Valutazioni |
Sviluppatore | kfegen |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Pause Video", "description": "Automatically pauses html 5 videos after a page loads", "version": "1.0", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |