Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
ما هو Youtube Title Blacklist؟
Youtube Title Blacklist هو إضافة Chrome تم تطويرها بواسطة http://creativebuilds.io، والميزة الرئيسية لها هي "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Title Blacklist
قم بتنزيل ملفات الامتداد Youtube Title Blacklist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.
معلومات أساسية عن التمديد
الاسم | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
الوصف | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
حجم الملف | 296 KB |
عدد التثبيتات | 423 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2020-12-12 |
تاريخ النشر | 2020-12-09 |
تقييم | 4.83/5 مجموع تقييمات 6 |
المطور | http://creativebuilds.io |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Title Blacklist", "version": "1.0.2", "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.", "icons": { "16": "assets\/icons\/icon16.png", "24": "assets\/icons\/icon24.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png", "default_popup": "popup\/index.html", "default_title": "Youtube Title Blacklist - Settings" }, "content_scripts": [ { "js": [ "content\/index.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "assets\/icons\/*.png" ], "permissions": [ "activeTab", "storage" ] } |