YouTube Profanity Filter
(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
ما هو YouTube Profanity Filter؟
YouTube Profanity Filter هو إضافة Chrome تم تطويرها بواسطة @atechdad، والميزة الرئيسية لها هي "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Profanity Filter
قم بتنزيل ملفات الامتداد YouTube Profanity Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The YouTube Profanity Filter was created to provide a better way to block unwanted content. This plugin uses the video's closed captions to identify bad words and blocks the video if the language is found. Created by @atechdad originally for personal use. YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
معلومات أساسية عن التمديد
الاسم | |
ID | dnglegpjmiodocfnhbbmlkabckglpmhf |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf |
الوصف | (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video. |
حجم الملف | 14.2 KB |
عدد التثبيتات | 779 |
النسخة الحالية | 0.1.0.1 |
آخر تحديث | 2017-01-04 |
تاريخ النشر | 2017-01-04 |
تقييم | 3.50/5 مجموع تقييمات 4 |
المطور | @atechdad |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Profanity Filter", "description": "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.", "version": "0.1.0.1", "homepage_url": "https:\/\/twitter.com\/atechdad", "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "https:\/\/*.youtube.com\/", "contextMenus" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ] } |