YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

什么是YouTube Blur?

YouTube Blur是由codedbyleo开发的Chrome扩展程序,该扩展的主要功能是“Avoid distractions on YouTube by blurring the thumbnails on the homepage”。

扩展截图

screenshot
screenshot

下载YouTube Blur扩展crx文件

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

扩展使用说明

                        With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage.

Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus!

PRIVACY
I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.                    

扩展基本信息

名称 YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
官方URL https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
简介 Avoid distractions on YouTube by blurring the thumbnails on the homepage
文件大小 17.86 KB
安装次数 569
当前版本 1.0.0
更新时间 2021-09-27
上架时间 2021-09-24
评分 4.00/5 共2次评分
开发者 codedbyleo
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blur",
    "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "128": "icon_128.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/"
            ],
            "js": [
                "blur.js"
            ]
        }
    ]
}