Word Cop

Word Cop censors profanity and inappropriate words on the Internet.

Cos'è Word Cop?

Word Cop è un'estensione di Chrome sviluppata da Siraaj Fadoo & Ryan Miles, e la sua funzione principale è "Word Cop censors profanity and inappropriate words on the Internet.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Word Cop

Scarica i file di estensione Word Cop 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

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

Informazioni di Base sull'Estensione

Nome Word Cop Word Cop
ID akmnnpnmghbahiimcfkpmccpifiiacoh
URL Ufficiale https://chrome.google.com/webstore/detail/word-cop/akmnnpnmghbahiimcfkpmccpifiiacoh
Descrizione Word Cop censors profanity and inappropriate words on the Internet.
Dimensione del File 21.62 KB
Conteggio Installazioni 37
Versione Corrente 1.21
Ultimo Aggiornamento 2016-02-01
Data di Pubblicazione 2016-02-01
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Siraaj Fadoo & Ryan Miles
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}