Profanity-Blocker

An advanced bad-word-blocker Chrome extension that censors bad words and websites.

Cos'è Profanity-Blocker?

Profanity-Blocker è un'estensione di Chrome sviluppata da https://profanityblocker.org, e la sua funzione principale è "An advanced bad-word-blocker Chrome extension that censors bad words and websites.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Profanity-Blocker

Scarica i file di estensione Profanity-Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension can detect double meaning words, offers an option to ignore and/or censor double meaning words. You can add and delete words or keep the default filter. Add a password authorization by going to the options menu, and toggle. You can keep records of the most words filtered!

After installing this extension you will be redirected to our website!                    

Informazioni di Base sull'Estensione

Nome Profanity-Blocker Profanity-Blocker
ID nfeoeimdfclfmipanclebdelkjdhdioj
URL Ufficiale https://chromewebstore.google.com/detail/profanity-blocker/nfeoeimdfclfmipanclebdelkjdhdioj
Descrizione An advanced bad-word-blocker Chrome extension that censors bad words and websites.
Dimensione del File 693 KB
Conteggio Installazioni 214
Versione Corrente 1.5
Ultimo Aggiornamento 2022-08-29
Data di Pubblicazione 2021-12-30
Valutazione 4.50/5 Totale 8 Valutazioni
Sviluppatore https://profanityblocker.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://profanityblocker.org
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Profanity-Blocker",
    "version": "1.5",
    "icons": {
        "128": "images\/logo128.png"
    },
    "description": "An advanced bad-word-blocker Chrome extension that censors bad words and websites.",
    "background": {
        "service_worker": "page.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/www.instagram.com\/*",
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "script-src": "'self' object-src"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "warn\/warn.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "incognito": "split"
}