Distraction Free YouTube

Are you distracted while watching educational videos! Hide those who got in your way to success.

什么是Distraction Free YouTube?

Distraction Free YouTube是由distractions.freee开发的Chrome扩展程序,该扩展的主要功能是“Are you distracted while watching educational videos! Hide those who got in your way to success.”。

扩展截图

screenshot
screenshot
screenshot

下载Distraction Free YouTube扩展crx文件

下载Distraction Free YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Sometimes while studying or watching educational videos. YouTube recommends videos that distract us, and we end up watching videos that are entirely a waste of time.
We developed this extension as a part of making social media a boon, not a bane.
You can find more info about us on https://distractionsfree.life
We need your feedback on our product. We aim to make social media as productive as we can, and for that, we need your support. Tell us about new features we should introduce in our extension, any bug. 
Thanks for your support.                    

扩展基本信息

名称 Distraction Free YouTube Distraction Free YouTube
ID hoeoebicgchngdidmbadgkdiempefcfn
官方URL https://chromewebstore.google.com/detail/distraction-free-youtube/hoeoebicgchngdidmbadgkdiempefcfn
简介 Are you distracted while watching educational videos! Hide those who got in your way to success.
文件大小 89.64 KB
安装次数 853
当前版本 0.2.1
更新时间 2020-10-19
上架时间 2020-10-13
评分 4.50/5 共16次评分
开发者 distractions.freee
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "version": "0.2.1",
    "description": "Are you distracted while watching educational videos! Hide those who got in your way to success. ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "custom.css"
            ],
            "js": [
                "logic.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/cropped.png",
            "32": "images\/cropped.png",
            "48": "images\/cropped.png",
            "128": "images\/cropped.png"
        }
    },
    "icons": {
        "16": "images\/cropped.png",
        "32": "images\/cropped.png",
        "48": "images\/cropped.png",
        "128": "images\/cropped.png"
    },
    "manifest_version": 2
}