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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Censor Words

ดาวน์โหลดไฟล์ส่วนขยาย Censor Words ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Censor Words 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
URL หน้าช่วยเหลือ https://buzentechnologies.com/
URL หน้านโยบายความเป็นส่วนตัว 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"
        }
    ]
}