No AutoPlay
Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
Cos'è No AutoPlay?
No AutoPlay è un'estensione di Chrome sviluppata da jccovey, e la sua funzione principale è "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.".
Scarica il file CRX dell'estensione No AutoPlay
Scarica i file di estensione No AutoPlay 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
Limited to YouTube videos. The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.
Informazioni di Base sull'Estensione
Nome | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
URL Ufficiale | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
Descrizione | Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab. |
Dimensione del File | 4.07 KB |
Conteggio Installazioni | 116 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2017-12-06 |
Data di Pubblicazione | 2017-12-06 |
Valutazione | 3.00/5 Totale 7 Valutazioni |
Sviluppatore | jccovey |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No AutoPlay", "version": "1.0.0", "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.", "permissions": [], "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtu.be\/*", "https:\/\/*.youtu.be\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |