Censor Words
This extension will censor the input bad words.
ما هو Censor Words؟
Censor Words هو إضافة Chrome تم تطويرها بواسطة Buzen Technologies، والميزة الرئيسية لها هي "This extension will censor the input bad words.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Censor Words
قم بتنزيل ملفات الامتداد Censor Words بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.
معلومات أساسية عن التمديد
الاسم | Censor Words |
ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl |
الوصف | This extension will censor the input bad words. |
حجم الملف | 46.63 KB |
عدد التثبيتات | 15 |
النسخة الحالية | 1.1 |
آخر تحديث | 2022-05-24 |
تاريخ النشر | 2022-05-21 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Buzen Technologies |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://buzentechnologies.com |
عنوان صفحة المساعدة | https://buzentechnologies.com/ |
عنوان صفحة سياسة الخصوصية | https://buzentechnologies.com/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Censor Words", "description": "This extension will censor the input bad words.", "version": "1.1", "icons": { "16": "\/icons\/icon-16.png", "32": "\/icons\/icon-32.png", "48": "\/icons\/icon-48.png", "128": "\/icons\/icon-128.png" }, "action": { "default_title": "Censor Words", "default_popup": "popup.html", "default_icon": { "16": "\/icons\/icon-16.png", "24": "\/icons\/icon-24.png", "32": "\/icons\/icon-32.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |