Word Cop

Word Cop censors profanity and inappropriate words on the Internet.

什么是Word Cop?

Word Cop是由Siraaj Fadoo & Ryan Miles开发的Chrome扩展程序,该扩展的主要功能是“Word Cop censors profanity and inappropriate words on the Internet.”。

扩展截图

screenshot

下载Word Cop扩展crx文件

下载Word Cop扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Word Cop Word Cop
ID akmnnpnmghbahiimcfkpmccpifiiacoh
官方URL https://chrome.google.com/webstore/detail/word-cop/akmnnpnmghbahiimcfkpmccpifiiacoh
简介 Word Cop censors profanity and inappropriate words on the Internet.
文件大小 21.62 KB
安装次数 37
当前版本 1.21
更新时间 2016-02-01
上架时间 2016-02-01
评分 3.67/5 共3次评分
开发者 Siraaj Fadoo & Ryan Miles
付费类型 free
支持的语言 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"
    ]
}