YouTube Blocker
Block unwanted YouTube channels.
Vad är YouTube Blocker?
YouTube Blocker är en Chrome-tillägg utvecklad av Przemysław Tyczyński, och dess huvudfunktion är "Block unwanted YouTube channels.".
Tilläggsskärmbilder
Ladda ner YouTube Blocker-förlängningens CRX-fil
Ladda ner YouTube Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
Beskrivning | Block unwanted YouTube channels. |
Filstorlek | 96.3 KB |
Antal Installationer | 1,036 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2020-04-21 |
Publiceringsdatum | 2020-04-21 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | Przemysław Tyczyński |
Betalningssätt | free |
Tilläggswebbplats | https://youtube-blocker.tyczynski.dev |
Hjälpsida URL | https://youtube-blocker.tyczynski.dev |
Stödda Språk | 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" ] } |