Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Cos'è Remove YouTube Autoplay?

Remove YouTube Autoplay è un'estensione di Chrome sviluppata da Kareem ElFaramawi, e la sua funzione principale è "Isn't YouTube autoplay the worst? This removes it".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Remove YouTube Autoplay

Scarica i file di estensione Remove YouTube 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

                        Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends.

This extension will continue to work if you:
- Delete browser history
- Enter incognito mode (After enabling this option in your extension settings)

Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.                    

Informazioni di Base sull'Estensione

Nome Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
URL Ufficiale https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Descrizione Isn't YouTube autoplay the worst? This removes it
Dimensione del File 1.68 MB
Conteggio Installazioni 848
Versione Corrente 0.1.7
Ultimo Aggiornamento 2023-06-05
Data di Pubblicazione 2018-10-06
Valutazione 3.57/5 Totale 23 Valutazioni
Sviluppatore Kareem ElFaramawi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/krx/chrome-delete-youtube-autoplay
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove YouTube Autoplay",
    "description": "Isn't YouTube autoplay the worst? This removes it",
    "author": "krx",
    "version": "0.1.7",
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/disableAutoplay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon_19.png"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}