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 อย่างง่ายดาย

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

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