Censor Me

Censor the internet by blocking certain words!

Apa itu Censor Me?

Censor Me adalah ekstensi Chrome yang dikembangkan oleh mehulpillaidev25, dan fitur utamanya adalah "Censor the internet by blocking certain words!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Censor Me

Unduh file ekstensi Censor Me 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

                        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.                    

Informasi Dasar Ekstensi

Nama Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
URL Resmi https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Deskripsi Censor the internet by blocking certain words!
Ukuran File 16.42 KB
Jumlah Instalasi 397
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-01-19
Tanggal Publikasi 2021-01-19
Penilaian 3.17/5 Total 6 Penilaian
Pengembang mehulpillaidev25
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}