YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

What is YouTube Blur?

YouTube Blur is a Chrome extension developed by codedbyleo, and its main feature is "Avoid distractions on YouTube by blurring the thumbnails on the homepage".

Extension Screenshots

screenshot
screenshot

Download YouTube Blur Extension CRX File

Download YouTube Blur extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
Official URL https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
Description Avoid distractions on YouTube by blurring the thumbnails on the homepage
File Size 17.86 KB
Installation Count 569
Current Version 1.0.0
Last Updated 2021-09-27
Publish Date 2021-09-24
Rating 4.00/5 Total 2 Ratings
Developer codedbyleo
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}