Content Warning
This extension provides customizable content warnings
ما هو Content Warning؟
Content Warning هو إضافة Chrome تم تطويرها بواسطة justinas.banys1، والميزة الرئيسية لها هي "This extension provides customizable content warnings".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Content Warning
قم بتنزيل ملفات الامتداد Content Warning بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension provides content warnings for particular keywords while browsing on various websites. The content warnings are easily customizable. Users can add, remove, and disable different warnings according to their preferences and whatever they find convenient using a simple interface. In case a keyword is found on some website, a pop-up is thrown providing the user with two options: continue browsing or leaving the site.
معلومات أساسية عن التمديد
الاسم | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
الوصف | This extension provides customizable content warnings |
حجم الملف | 17.76 KB |
عدد التثبيتات | 12 |
النسخة الحالية | 1.4.1 |
آخر تحديث | 2018-06-02 |
تاريخ النشر | 2018-06-01 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | justinas.banys1 |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Warning", "description": "This extension provides customizable content warnings", "version": "1.4.1", "options_page": "options.html", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "cw_icon.png" }, "icons": { "128": "cw_icon.png" }, "background": { "scripts": [ "js\/content.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ] } |