EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Cos'è EmojiDisplay?

EmojiDisplay è un'estensione di Chrome sviluppata da ranjotsingh, e la sua funzione principale è "This extension replaces emoticon text with the Apple Emojis.".

Scarica il file CRX dell'estensione EmojiDisplay

Scarica i file di estensione EmojiDisplay 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

                        This extension replaces emoticon text with the Apple Emojis.                    

Informazioni di Base sull'Estensione

Nome EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
URL Ufficiale https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
Descrizione This extension replaces emoticon text with the Apple Emojis.
Dimensione del File 9.82 KB
Conteggio Installazioni 15
Versione Corrente 0.1
Ultimo Aggiornamento 2017-11-02
Data di Pubblicazione 2017-11-02
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore ranjotsingh
Tipo di Pagamento free
Sito Web dell'Estensione https://www.ranjotsingh.com
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmojiDisplay",
    "description": "This extension replaces emoticon text with the Apple Emojis.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}