Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Co to jest Remove YouTube Autoplay?

Remove YouTube Autoplay to rozszerzenie Chrome opracowane przez Kareem ElFaramawi, a jego główną funkcją jest „Isn't YouTube autoplay the worst? This removes it”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Remove YouTube Autoplay

Pobierz pliki rozszerzeń Remove YouTube Autoplay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
Oficjalny URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Opis Isn't YouTube autoplay the worst? This removes it
Rozmiar pliku 1.68 MB
Liczba instalacji 848
Aktualna Wersja 0.1.7
Ostatnia Aktualizacja 2023-06-05
Data Publikacji 2018-10-06
Ocena 3.57/5 Łącznie 23 Oceny
Deweloper Kareem ElFaramawi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/krx/chrome-delete-youtube-autoplay
Obsługiwane Języki 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"
    }
}