Emoji Censor

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

Qu'est-ce que Emoji Censor ?

Emoji Censor est une extension Chrome développée par Gilmore Davidson, et sa fonction principale est "Redacts all emoji characters on a page, replacing them with black boxes".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Emoji Censor

Téléchargez les fichiers d'extension Emoji Censor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 )                    

Informations de Base sur l'Extension

Nom Emoji Censor Emoji Censor
ID heceohcbaahlibmaeheomnkpmhnggnld
URL Officiel https://chromewebstore.google.com/detail/emoji-censor/heceohcbaahlibmaeheomnkpmhnggnld
Description Redacts all emoji characters on a page, replacing them with black boxes
Taille du Fichier 73.05 KB
Nombre d'Installations 40
Version Actuelle 1.2.2
Dernière Mise à Jour 2020-12-15
Date de Publication 2020-04-13
Évaluation 4.75/5 Total 4 Évaluations
Développeur Gilmore Davidson
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gilmoreorless.github.io/emoji-censor/
URL de la Page d'Aide https://github.com/gilmoreorless/emoji-censor/issues
Langues Prises en Charge 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": [
        ""
    ]
}