Censor Me

Censor the internet by blocking certain words!

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

Το Censor Me είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mehulpillaidev25, και η κύρια λειτουργία του είναι "Censor the internet by blocking certain words!".

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

screenshot
screenshot

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

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

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

                        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.                    

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

Όνομα Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Επίσημο URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Περιγραφή Censor the internet by blocking certain words!
Μέγεθος Αρχείου 16.42 KB
Αριθμός Εγκαταστάσεων 397
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-01-19
Ημερομηνία Δημοσίευσης 2021-01-19
Αξιολόγηση 3.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής mehulpillaidev25
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}