Censor Me

Censor the internet by blocking certain words!

Wat is Censor Me?

Censor Me is een Chrome-extensie ontwikkeld door mehulpillaidev25, en de belangrijkste functie is "Censor the internet by blocking certain words!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Censor Me

Download Censor Me-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Officiële URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Beschrijving Censor the internet by blocking certain words!
Bestandsgrootte 16.42 KB
Aantal Installaties 397
Huidige Versie 1.0
Laatst Bijgewerkt 2021-01-19
Publicatiedatum 2021-01-19
Beoordeling 3.17/5 Totaal 6 Beoordelingen
Ontwikkelaar mehulpillaidev25
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}