YouTube Zen Mode

Get rid of all the distractions on YouTube

Co to jest YouTube Zen Mode?

YouTube Zen Mode to rozszerzenie Chrome opracowane przez Marbl, a jego główną funkcją jest „Get rid of all the distractions on YouTube”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Zen Mode

Pobierz pliki rozszerzeń YouTube Zen Mode 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

                        Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Zen Mode YouTube Zen Mode
ID dgdfifjibepijpnledojfgcaggckaclb
Oficjalny URL https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb
Opis Get rid of all the distractions on YouTube
Rozmiar pliku 399 KB
Liczba instalacji 212
Aktualna Wersja 2.1.2
Ostatnia Aktualizacja 2023-01-10
Data Publikacji 2020-11-14
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper Marbl
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": "YouTube Zen Mode",
    "version": "2.1.2",
    "description": "Get rid of all the distractions on YouTube",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Zen",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube\/main.js"
            ],
            "css": [
                "youtube\/youtube.css"
            ],
            "run_at": "document_end"
        }
    ]
}