Emoji Blocker

Removes emojis

Cos'è Emoji Blocker?

Emoji Blocker è un'estensione di Chrome sviluppata da deathtoemojis, e la sua funzione principale è "Removes emojis".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Emoji Blocker

Scarica i file di estensione Emoji Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Removes the most common emojis from text and some images (experimental). Now features simple settings and also counts how many emojis were blocked.                    

Informazioni di Base sull'Estensione

Nome Emoji Blocker Emoji Blocker
ID eimknojlmcfpmofldcdiaddfimjchmcj
URL Ufficiale https://chromewebstore.google.com/detail/emoji-blocker/eimknojlmcfpmofldcdiaddfimjchmcj
Descrizione Removes emojis
Dimensione del File 10.1 KB
Conteggio Installazioni 379
Versione Corrente 1.1
Ultimo Aggiornamento 2021-05-06
Data di Pubblicazione 2020-05-21
Valutazione 4.88/5 Totale 17 Valutazioni
Sviluppatore deathtoemojis
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Emoji Blocker",
    "version": "1.1",
    "description": "Removes emojis",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Emoji Blocker",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "storage": {
        "managed_schema": "storage_schema.json"
    }
}