YT End Cards Hider

YT End Cards Hider

Co to jest YT End Cards Hider?

YT End Cards Hider to rozszerzenie Chrome opracowane przez Ayudh Kumar Gupta, a jego główną funkcją jest „YT End Cards Hider”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YT End Cards Hider

Pobierz pliki rozszerzeń YT End Cards Hider 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

                        Hide annoying End Cards from YouTube videos. Remove suggested videos that show up as thumbnails at the end of a YouTube video with this simple extension.                    

Podstawowe informacje o rozszerzeniu

Nazwa YT End Cards Hider YT End Cards Hider
ID jokabnhdpdjkpncammcloeagdnnooima
Oficjalny URL https://chromewebstore.google.com/detail/yt-end-cards-hider/jokabnhdpdjkpncammcloeagdnnooima
Opis YT End Cards Hider
Rozmiar pliku 12.68 KB
Liczba instalacji 1,100
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-05-07
Data Publikacji 2020-05-07
Ocena 4.73/5 Łącznie 15 Oceny
Deweloper Ayudh Kumar Gupta
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YT End Cards Hider",
    "version": "1.0",
    "description": "YT End Cards Hider",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}