Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Was ist Remove YouTube Autoplay?

Remove YouTube Autoplay ist eine Chrome-Erweiterung, die von Kareem ElFaramawi entwickelt wurde, und ihr Hauptmerkmal ist "Isn't YouTube autoplay the worst? This removes it".

Erweiterungsscreenshots

screenshot
screenshot

Remove YouTube Autoplay-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remove YouTube Autoplay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
Offizielle URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Beschreibung Isn't YouTube autoplay the worst? This removes it
Dateigröße 1.68 MB
Installationsanzahl 848
Aktuelle Version 0.1.7
Letztes Update 2023-06-05
Veröffentlichungsdatum 2018-10-06
Bewertung 3.57/5 Insgesamt 23 Bewertungen
Entwickler Kareem ElFaramawi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/krx/chrome-delete-youtube-autoplay
Unterstützte Sprachen 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"
    }
}