YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

Was ist YouTube Blur?

YouTube Blur ist eine Chrome-Erweiterung, die von codedbyleo entwickelt wurde, und ihr Hauptmerkmal ist "Avoid distractions on YouTube by blurring the thumbnails on the homepage".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Blur-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Blur-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
Offizielle URL https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
Beschreibung Avoid distractions on YouTube by blurring the thumbnails on the homepage
Dateigröße 17.86 KB
Installationsanzahl 569
Aktuelle Version 1.0.0
Letztes Update 2021-09-27
Veröffentlichungsdatum 2021-09-24
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler codedbyleo
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}