Emoji Censor

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

¿Qué es Emoji Censor?

Emoji Censor es una extensión de Chrome desarrollada por Gilmore Davidson, y su función principal es "Redacts all emoji characters on a page, replacing them with black boxes".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Emoji Censor

Descarga archivos de extensión Emoji Censor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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 )                    

Información Básica de la Extensión

Nombre Emoji Censor Emoji Censor
ID heceohcbaahlibmaeheomnkpmhnggnld
URL Oficial https://chromewebstore.google.com/detail/emoji-censor/heceohcbaahlibmaeheomnkpmhnggnld
Descripción Redacts all emoji characters on a page, replacing them with black boxes
Tamaño del Archivo 73.05 KB
Cantidad de Instalaciones 40
Versión Actual 1.2.2
Última Actualización 2020-12-15
Fecha de Publicación 2020-04-13
Calificación 4.75/5 Total de 4 Calificaciones
Desarrollador Gilmore Davidson
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://gilmoreorless.github.io/emoji-censor/
URL de la Página de Ayuda https://github.com/gilmoreorless/emoji-censor/issues
Idiomas Soportados 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": [
        ""
    ]
}