Censor Words

This extension will censor the input bad words.

Τι είναι το Censor Words;

Το Censor Words είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Buzen Technologies, και η κύρια λειτουργία του είναι "This extension will censor the input bad words.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Censor Words

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

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

                        This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.                    

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

Όνομα Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
Επίσημο URL https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
Περιγραφή This extension will censor the input bad words.
Μέγεθος Αρχείου 46.63 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2022-05-24
Ημερομηνία Δημοσίευσης 2022-05-21
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Buzen Technologies
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://buzentechnologies.com
Διεύθυνση URL της Σελίδας Βοήθειας https://buzentechnologies.com/
URL της Σελίδας Πολιτικής Απορρήτου https://buzentechnologies.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Censor Words",
    "description": "This extension will censor the input bad words.",
    "version": "1.1",
    "icons": {
        "16": "\/icons\/icon-16.png",
        "32": "\/icons\/icon-32.png",
        "48": "\/icons\/icon-48.png",
        "128": "\/icons\/icon-128.png"
    },
    "action": {
        "default_title": "Censor Words",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/icon-16.png",
            "24": "\/icons\/icon-24.png",
            "32": "\/icons\/icon-32.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}