Word Cop

Word Cop censors profanity and inappropriate words on the Internet.

Was ist Word Cop?

Word Cop ist eine Chrome-Erweiterung, die von Siraaj Fadoo & Ryan Miles entwickelt wurde, und ihr Hauptmerkmal ist "Word Cop censors profanity and inappropriate words on the Internet.".

Erweiterungsscreenshots

screenshot

Word Cop-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word Cop-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Word Cop is a Google Chrome Extension that censors profanity and inappropriate words on the Internet.                    

Grundlegende Informationen zur Erweiterung

Name Word Cop Word Cop
ID akmnnpnmghbahiimcfkpmccpifiiacoh
Offizielle URL https://chrome.google.com/webstore/detail/word-cop/akmnnpnmghbahiimcfkpmccpifiiacoh
Beschreibung Word Cop censors profanity and inappropriate words on the Internet.
Dateigröße 21.62 KB
Installationsanzahl 37
Aktuelle Version 1.21
Letztes Update 2016-02-01
Veröffentlichungsdatum 2016-02-01
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Siraaj Fadoo & Ryan Miles
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Cop",
    "short_name": "Word Cop",
    "description": "Word Cop censors profanity and inappropriate words on the Internet.",
    "version": "1.21",
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "",
        "storage",
        "browsingData"
    ],
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "functions.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "words.json"
    ]
}