Emoji Censor

Redacts all emoji characters on a page, replacing them with black boxes

什么是Emoji Censor?

Emoji Censor是由Gilmore Davidson开发的Chrome扩展程序,该扩展的主要功能是“Redacts all emoji characters on a page, replacing them with black boxes”。

扩展截图

screenshot

下载Emoji Censor扩展crx文件

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

扩展使用说明

                        Emoji characters can be bright and fun, but sometimes you just want them to GO AWAY! This extension lets you embrace your grumpy side by redacting (blacking out) all emoji characters as you browse.

Just click the Emoji Censor icon to turn censoring on or off. While it's on, you'll see a count of how many pesky emoji have been removed from your vision.

The code is open source at https://github.com/gilmoreorless/emoji-censor, and is also available as a web page with audio censoring at https://gilmoreorless.github.io/emoji-censor/

(You could even install it together with the Emoji Translate extension and black out half the web! https://chrome.google.com/webstore/detail/emoji-translate/kkkfndlpdajmbgofkidemhkjoinhmojl )                    

扩展基本信息

名称 Emoji Censor Emoji Censor
ID heceohcbaahlibmaeheomnkpmhnggnld
官方URL https://chromewebstore.google.com/detail/emoji-censor/heceohcbaahlibmaeheomnkpmhnggnld
简介 Redacts all emoji characters on a page, replacing them with black boxes
文件大小 73.05 KB
安装次数 40
当前版本 1.2.2
更新时间 2020-12-15
上架时间 2020-04-13
评分 4.75/5 共4次评分
开发者 Gilmore Davidson
电子邮箱 [email protected]
付费类型 free
扩展官网 https://gilmoreorless.github.io/emoji-censor/
帮助页面URL https://github.com/gilmoreorless/emoji-censor/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Emoji Censor",
    "version": "1.2.2",
    "description": "Redacts all emoji characters on a page, replacing them with black boxes",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon-32.png",
        "default_title": "Censor all emoji"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "emoji-censor.js",
                "emoji-censor-comms.js"
            ]
        }
    ],
    "permissions": [
        ""
    ]
}