Emoji Censor

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

Emoji Censor क्या है?

Emoji Censor Gilmore Davidson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redacts all emoji characters on a page, replacing them with black boxes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Emoji Censor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
        ""
    ]
}