Youtube Study Mode

No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.

Co to jest Youtube Study Mode?

Youtube Study Mode to rozszerzenie Chrome opracowane przez zkjiang12, a jego główną funkcją jest „No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Study Mode

Pobierz pliki rozszerzeń Youtube Study 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

                        Finish your work faster by being less distracted on Youtube.

Instead of the Youtube home page being filled with distracting videos, it's only a search bar. When watching a video the recommendations are also hidden. 

This way you won't accidentally get distracted and spend hours watching videos. Instead, this will help you quickly finish work so you can enjoy free time.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Study Mode Youtube Study Mode
ID phkgjapblkjghdpbnbkjphgjploajonl
Oficjalny URL https://chromewebstore.google.com/detail/youtube-study-mode/phkgjapblkjghdpbnbkjphgjploajonl
Opis No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.
Rozmiar pliku 172 KB
Liczba instalacji 121
Aktualna Wersja 3.1.1
Ostatnia Aktualizacja 2023-08-29
Data Publikacji 2023-07-05
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper zkjiang12
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 Study Mode",
    "version": "3.1.1",
    "manifest_version": 3,
    "description": "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.",
    "icons": {
        "16": "\/icon.png",
        "32": "\/icon.png",
        "48": "\/icon.png",
        "128": "\/icon.png"
    },
    "action": {
        "default_icon": {
            "16": "\/icon.png",
            "32": "\/icon.png",
            "48": "\/icon.png",
            "128": "\/icon.png"
        }
    },
    "background": {
        "service_worker": "\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "\/yt.js"
            ],
            "css": [
                "\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo.png",
                "stars.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}