Youtube Study Mode

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

Что такое Youtube Study Mode?

Youtube Study Mode - это расширение Chrome, разработанное zkjiang12, и его основная функция - "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Youtube Study Mode

Скачайте файлы расширений Youtube Study Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Youtube Study Mode Youtube Study Mode
ID phkgjapblkjghdpbnbkjphgjploajonl
Официальный URL https://chromewebstore.google.com/detail/youtube-study-mode/phkgjapblkjghdpbnbkjphgjploajonl
Описание No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.
Размер файла 172 KB
Количество установок 121
Текущая Версия 3.1.1
Последнее Обновление 2023-08-29
Дата публикации 2023-07-05
Рейтинг 5.00/5 Всего 7 оценок
Разработчик zkjiang12
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}