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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}