Censor Me

Censor the internet by blocking certain words!

Co to jest Censor Me?

Censor Me to rozszerzenie Chrome opracowane przez mehulpillaidev25, a jego główną funkcją jest „Censor the internet by blocking certain words!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Censor Me

Pobierz pliki rozszerzeń Censor Me w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Oficjalny URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Opis Censor the internet by blocking certain words!
Rozmiar pliku 16.42 KB
Liczba instalacji 397
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-01-19
Data Publikacji 2021-01-19
Ocena 3.17/5 Łącznie 6 Oceny
Deweloper mehulpillaidev25
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}