Censor Me

Censor the internet by blocking certain words!

Qu'est-ce que Censor Me ?

Censor Me est une extension Chrome développée par mehulpillaidev25, et sa fonction principale est "Censor the internet by blocking certain words!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Censor Me

Téléchargez les fichiers d'extension Censor Me au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
URL Officiel https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Description Censor the internet by blocking certain words!
Taille du Fichier 16.42 KB
Nombre d'Installations 397
Version Actuelle 1.0
Dernière Mise à Jour 2021-01-19
Date de Publication 2021-01-19
Évaluation 3.17/5 Total 6 Évaluations
Développeur mehulpillaidev25
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}