Blurred thumbnails

Blur thumbnails on YT page for whatever reason

Qu'est-ce que Blurred thumbnails ?

Blurred thumbnails est une extension Chrome développée par krzysiek.kurczewski, et sa fonction principale est "Blur thumbnails on YT page for whatever reason".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Blurred thumbnails

Téléchargez les fichiers d'extension Blurred thumbnails au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Extension allows to selectively blur thumbnails on Youtube videos.

# Possible configuration:
- Whitelist & blacklist
- Channel name
- Keywords in video title

# How to configure:
- Click extension icon to open options
- Click on tags to edit existing keywords
- Press enter to add new keywords
- For channels use plain names (including spaces)
- Use: ".*" as a keyword to match all patterns
- Use "Test phrase" input on bottom to check which tags will apply for given plain text                    

Informations de Base sur l'Extension

Nom Blurred thumbnails Blurred thumbnails
ID lefhalefpinohjmpfflkfcaoiafmpifb
URL Officiel https://chromewebstore.google.com/detail/blurred-thumbnails/lefhalefpinohjmpfflkfcaoiafmpifb
Description Blur thumbnails on YT page for whatever reason
Taille du Fichier 26.32 KB
Nombre d'Installations 645
Version Actuelle 1.5.0
Dernière Mise à Jour 2024-02-18
Date de Publication 2023-03-25
Évaluation 4.78/5 Total 9 Évaluations
Développeur krzysiek.kurczewski
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kkurczewski/blur-youtube-thumbnails
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blurred thumbnails",
    "version": "1.5.0",
    "description": "Blur thumbnails on YT page for whatever reason",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/m.youtube.com\/*"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "hook\/onInstall.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/blur.js",
                "content\/observer\/mutationObserver.js",
                "content\/selectors\/home.js",
                "content\/selectors\/watch.js",
                "content\/selectors\/results.js",
                "content\/selectors\/playlists.js",
                "content\/video.js",
                "content\/recycler.js",
                "content\/index.js"
            ],
            "css": [
                "content\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "content\/blur.js",
                "content\/observer\/mutationObserver.js",
                "content\/selectors\/home.m.js",
                "content\/selectors\/watch.m.js",
                "content\/video.js",
                "content\/index.m.js"
            ],
            "css": [
                "content\/style.m.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}