Word Blocker

Blocks passages on webpages that include a word the user has muted.

ما هو Word Blocker؟

Word Blocker هو إضافة Chrome تم تطويرها بواسطة pyran، والميزة الرئيسية لها هي "Blocks passages on webpages that include a word the user has muted.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Word Blocker

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

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

                        Enter words in the popup, and it will be censored with asterisks. This extension will soon be able to be used for blocking triggers or avoiding spoilers.                    

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

الاسم Word Blocker Word Blocker
ID ebbplnackfijdgaocobghipflkadnejp
عنوان URL الرسمي https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp
الوصف Blocks passages on webpages that include a word the user has muted.
حجم الملف 33.34 KB
عدد التثبيتات 852
النسخة الحالية 0.1.0
آخر تحديث 2021-01-18
تاريخ النشر 2021-01-18
تقييم 3.08/5 مجموع تقييمات 12
المطور pyran
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Blocker",
    "description": "Blocks passages on webpages that include a word the user has muted.",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "128": ".\/monkey_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": ".\/options.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}