Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Wat is Remove YouTube Autoplay?

Remove YouTube Autoplay is een Chrome-extensie ontwikkeld door Kareem ElFaramawi, en de belangrijkste functie is "Isn't YouTube autoplay the worst? This removes it".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Remove YouTube Autoplay

Download Remove YouTube Autoplay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
Officiële URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Beschrijving Isn't YouTube autoplay the worst? This removes it
Bestandsgrootte 1.68 MB
Aantal Installaties 848
Huidige Versie 0.1.7
Laatst Bijgewerkt 2023-06-05
Publicatiedatum 2018-10-06
Beoordeling 3.57/5 Totaal 23 Beoordelingen
Ontwikkelaar Kareem ElFaramawi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/krx/chrome-delete-youtube-autoplay
Ondersteunde Talen 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"
    }
}