YouTube Blocker

Block unwanted YouTube channels.

Was ist YouTube Blocker?

YouTube Blocker ist eine Chrome-Erweiterung, die von Przemysław Tyczyński entwickelt wurde, und ihr Hauptmerkmal ist "Block unwanted YouTube channels.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Blocker-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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
Offizielle URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
Beschreibung Block unwanted YouTube channels.
Dateigröße 96.3 KB
Installationsanzahl 1,036
Aktuelle Version 1.0.0
Letztes Update 2020-04-21
Veröffentlichungsdatum 2020-04-21
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Przemysław Tyczyński
Zahlungsart free
Erweiterungswebsite https://youtube-blocker.tyczynski.dev
Hilfeseite URL https://youtube-blocker.tyczynski.dev
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}