Censor Words

This extension will censor the input bad words.

Apa itu Censor Words?

Censor Words adalah ekstensi Chrome yang dikembangkan oleh Buzen Technologies, dan fitur utamanya adalah "This extension will censor the input bad words.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Censor Words

Unduh file ekstensi Censor Words dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
URL Resmi https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
Deskripsi This extension will censor the input bad words.
Ukuran File 46.63 KB
Jumlah Instalasi 15
Versi Saat Ini 1.1
Terakhir Diperbarui 2022-05-24
Tanggal Publikasi 2022-05-21
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Buzen Technologies
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://buzentechnologies.com
URL Halaman Bantuan https://buzentechnologies.com/
URL Halaman Kebijakan Privasi https://buzentechnologies.com/privacy
Bahasa yang Didukung 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"
        }
    ]
}