Censor Me

Censor the internet by blocking certain words!

ما هو Censor Me؟

Censor Me هو إضافة Chrome تم تطويرها بواسطة mehulpillaidev25، والميزة الرئيسية لها هي "Censor the internet by blocking certain words!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Censor Me

قم بتنزيل ملفات الامتداد Censor Me بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

معلومات أساسية عن التمديد

الاسم Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
عنوان URL الرسمي https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
الوصف Censor the internet by blocking certain words!
حجم الملف 16.42 KB
عدد التثبيتات 397
النسخة الحالية 1.0
آخر تحديث 2021-01-19
تاريخ النشر 2021-01-19
تقييم 3.17/5 مجموع تقييمات 6
المطور mehulpillaidev25
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}