Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Co je Remove YouTube Autoplay?

Remove YouTube Autoplay je rozšíření Chrome vyvinuté Kareem ElFaramawi, a jeho hlavní funkcí je „Isn't YouTube autoplay the worst? This removes it“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Remove YouTube Autoplay

Stáhněte si soubory rozšíření Remove YouTube Autoplay ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
Oficiální URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Popis Isn't YouTube autoplay the worst? This removes it
Velikost souboru 1.68 MB
Počet instalací 848
Aktuální Verze 0.1.7
Poslední Aktualizace 2023-06-05
Datum Vydání 2018-10-06
Hodnocení 3.57/5 Celkem 23 Hodnocení
Vývojář Kareem ElFaramawi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/krx/chrome-delete-youtube-autoplay
Podporované Jazyky 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"
    }
}