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
Eメール [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": [
        ""
    ]
}