YouTube Blocker
Block unwanted YouTube channels.
Apa itu YouTube Blocker?
YouTube Blocker adalah ekstensi Chrome yang dikembangkan oleh Przemysław Tyczyński, dan fitur utamanya adalah "Block unwanted YouTube channels.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouTube Blocker
Unduh file ekstensi YouTube Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
URL Resmi | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
Deskripsi | Block unwanted YouTube channels. |
Ukuran File | 96.3 KB |
Jumlah Instalasi | 1,036 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2020-04-21 |
Tanggal Publikasi | 2020-04-21 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | Przemysław Tyczyński |
Tipe Pembayaran | free |
Situs Ekstensi | https://youtube-blocker.tyczynski.dev |
URL Halaman Bantuan | https://youtube-blocker.tyczynski.dev |
Bahasa yang Didukung | 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" ] } |