YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

YouTube Blur क्या है?

YouTube Blur codedbyleo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Avoid distractions on YouTube by blurring the thumbnails on the homepage"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Blur एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}