Autoplay Stopper for YouTube
Chrome Extension for Turning off Autoplay on YouTube.
Cos'è Autoplay Stopper for YouTube?
Autoplay Stopper for YouTube è un'estensione di Chrome sviluppata da https://fiahfy.blogspot.com, e la sua funzione principale è "Chrome Extension for Turning off Autoplay on YouTube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Autoplay Stopper for YouTube
Scarica i file di estensione Autoplay Stopper for YouTube 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
- Turn off autoplay on video and channel page.
Informazioni di Base sull'Estensione
Nome | Autoplay Stopper for YouTube |
ID | nllpbgemclgokfdjneckdfnhjpigolko |
URL Ufficiale | https://chromewebstore.google.com/detail/autoplay-stopper-for-yout/nllpbgemclgokfdjneckdfnhjpigolko |
Descrizione | Chrome Extension for Turning off Autoplay on YouTube. |
Dimensione del File | 145 KB |
Conteggio Installazioni | 1,329 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2022-12-31 |
Data di Pubblicazione | 2020-08-28 |
Valutazione | 3.57/5 Totale 14 Valutazioni |
Sviluppatore | https://fiahfy.blogspot.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Autoplay Stopper for YouTube", "description": "Chrome Extension for Turning off Autoplay on YouTube.", "version": "0.0.3" } |