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是由zkjiang12开发的Chrome扩展程序,该扩展的主要功能是“No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.”。

扩展截图

screenshot
screenshot
screenshot

下载Youtube Study Mode扩展crx文件

下载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\/*"
            ]
        }
    ]
}