YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

YouTube Blur là gì?

YouTube Blur là một tiện ích mở rộng Chrome được phát triển bởi codedbyleo, và tính năng chính của nó là "Avoid distractions on YouTube by blurring the thumbnails on the homepage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Blur

Tải xuống các tệp mở rộng YouTube Blur dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
URL Chính Thức https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
Mô tả Avoid distractions on YouTube by blurring the thumbnails on the homepage
Kích Thước Tệp 17.86 KB
Số Lần Cài Đặt 569
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-09-27
Ngày Phát Hành 2021-09-24
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển codedbyleo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}