Profanity-Blocker

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

Τι είναι το Profanity-Blocker;

Το Profanity-Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://profanityblocker.org, και η κύρια λειτουργία του είναι "An advanced bad-word-blocker Chrome extension that censors bad words and websites.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Profanity-Blocker

Λήψη αρχείων επέκτασης Profanity-Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Profanity-Blocker Profanity-Blocker
ID nfeoeimdfclfmipanclebdelkjdhdioj
Επίσημο URL https://chromewebstore.google.com/detail/profanity-blocker/nfeoeimdfclfmipanclebdelkjdhdioj
Περιγραφή An advanced bad-word-blocker Chrome extension that censors bad words and websites.
Μέγεθος Αρχείου 693 KB
Αριθμός Εγκαταστάσεων 214
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2022-08-29
Ημερομηνία Δημοσίευσης 2021-12-30
Αξιολόγηση 4.50/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://profanityblocker.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://profanityblocker.org
Υποστηριζόμενες Γλώσσες 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"
}