YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Cos'è YouTube Autoplay Disabler?
YouTube Autoplay Disabler è un'estensione di Chrome sviluppata da Luciano Ratamero, e la sua funzione principale è "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Autoplay Disabler
Scarica i file di estensione YouTube Autoplay Disabler 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
Free and open-sourced alternative for disabling YouTube's autoplay "feature"
Checks if YouTube autoplay is on and, if it is, disables it.
https://github.com/lucianoratamero/youtube-autoplay-disabler Informazioni di Base sull'Estensione
| Nome | |
| ID | mlebignjhimfeggkjhhgbhomibiplmem |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
| Descrizione | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
| Dimensione del File | 366 KB |
| Conteggio Installazioni | 161 |
| Versione Corrente | 0.2.1 |
| Ultimo Aggiornamento | 2021-04-29 |
| Data di Pubblicazione | 2018-06-15 |
| Valutazione | 3.12/5 Totale 17 Valutazioni |
| Sviluppatore | Luciano Ratamero |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Autoplay Disabler",
"description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
"version": "0.2.1",
"icons": {
"128": "icon-small.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_icon": "icon-small.png"
}
} | |