Emoji Censor

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

Emoji Censor là gì?

Emoji Censor là một tiện ích mở rộng Chrome được phát triển bởi Gilmore Davidson, và tính năng chính của nó là "Redacts all emoji characters on a page, replacing them with black boxes".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Emoji Censor

Tải xuống các tệp mở rộng Emoji Censor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 )                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Emoji Censor Emoji Censor
ID heceohcbaahlibmaeheomnkpmhnggnld
URL Chính Thức https://chromewebstore.google.com/detail/emoji-censor/heceohcbaahlibmaeheomnkpmhnggnld
Mô tả Redacts all emoji characters on a page, replacing them with black boxes
Kích Thước Tệp 73.05 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2020-12-15
Ngày Phát Hành 2020-04-13
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Gilmore Davidson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gilmoreorless.github.io/emoji-censor/
URL Trang Trợ Giúp https://github.com/gilmoreorless/emoji-censor/issues
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}