Censor Me

Censor the internet by blocking certain words!

什么是Censor Me?

Censor Me是由mehulpillaidev25开发的Chrome扩展程序,该扩展的主要功能是“Censor the internet by blocking certain words!”。

扩展截图

screenshot
screenshot

下载Censor Me扩展crx文件

下载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"
    }
}