Censor Me

Censor the internet by blocking certain words!

Cos'è Censor Me?

Censor Me è un'estensione di Chrome sviluppata da mehulpillaidev25, e la sua funzione principale è "Censor the internet by blocking certain words!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Censor Me

Scarica i file di estensione Censor Me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
URL Ufficiale https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Descrizione Censor the internet by blocking certain words!
Dimensione del File 16.42 KB
Conteggio Installazioni 397
Versione Corrente 1.0
Ultimo Aggiornamento 2021-01-19
Data di Pubblicazione 2021-01-19
Valutazione 3.17/5 Totale 6 Valutazioni
Sviluppatore mehulpillaidev25
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}