Censor Me

Censor the internet by blocking certain words!

Was ist Censor Me?

Censor Me ist eine Chrome-Erweiterung, die von mehulpillaidev25 entwickelt wurde, und ihr Hauptmerkmal ist "Censor the internet by blocking certain words!".

Erweiterungsscreenshots

screenshot
screenshot

Censor Me-Erweiterungs-CRX-Datei herunterladen

Laden Sie Censor Me-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Offizielle URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Beschreibung Censor the internet by blocking certain words!
Dateigröße 16.42 KB
Installationsanzahl 397
Aktuelle Version 1.0
Letztes Update 2021-01-19
Veröffentlichungsdatum 2021-01-19
Bewertung 3.17/5 Insgesamt 6 Bewertungen
Entwickler mehulpillaidev25
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}