Censor Me

Censor the internet by blocking certain words!

Co je Censor Me?

Censor Me je rozšíření Chrome vyvinuté mehulpillaidev25, a jeho hlavní funkcí je „Censor the internet by blocking certain words!“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Censor Me

Stáhněte si soubory rozšíření Censor Me ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Oficiální URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Popis Censor the internet by blocking certain words!
Velikost souboru 16.42 KB
Počet instalací 397
Aktuální Verze 1.0
Poslední Aktualizace 2021-01-19
Datum Vydání 2021-01-19
Hodnocení 3.17/5 Celkem 6 Hodnocení
Vývojář mehulpillaidev25
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}