YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

Wat is YouTube Blur?

YouTube Blur is een Chrome-extensie ontwikkeld door codedbyleo, en de belangrijkste functie is "Avoid distractions on YouTube by blurring the thumbnails on the homepage".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie YouTube Blur

Download YouTube Blur-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
Officiële URL https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
Beschrijving Avoid distractions on YouTube by blurring the thumbnails on the homepage
Bestandsgrootte 17.86 KB
Aantal Installaties 569
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-09-27
Publicatiedatum 2021-09-24
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar codedbyleo
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}