YouTube Blocker
Block unwanted YouTube channels.
Wat is YouTube Blocker?
YouTube Blocker is een Chrome-extensie ontwikkeld door Przemysław Tyczyński, en de belangrijkste functie is "Block unwanted YouTube channels.".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Blocker
Download YouTube Blocker-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
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.
Basisinformatie over de Extensie
Naam | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
Beschrijving | Block unwanted YouTube channels. |
Bestandsgrootte | 96.3 KB |
Aantal Installaties | 1,036 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-04-21 |
Publicatiedatum | 2020-04-21 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Przemysław Tyczyński |
Betalingswijze | free |
Extensiewebsite | https://youtube-blocker.tyczynski.dev |
Help Pagina-URL | https://youtube-blocker.tyczynski.dev |
Ondersteunde Talen | 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" ] } |