EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Wat is EmojiDisplay?

EmojiDisplay is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension replaces emoticon text with the Apple Emojis.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie EmojiDisplay

Download EmojiDisplay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        EmojiDisplay is a Chrome extension, which replaces text versions of the emojis into images (for operating systems that do not automatically support this feature).

e.g. Special characters 😀, 😁, 😂, 😃, etc. are replaced with graphics of Apple Emojis.                    

Basisinformatie over de Extensie

Naam EmojiDisplay EmojiDisplay
ID gichgflklefnkeffjbefmcagecfndbjl
Officiële URL https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl
Beschrijving This extension replaces emoticon text with the Apple Emojis.
Bestandsgrootte 18.6 MB
Aantal Installaties 332
Huidige Versie 0.1
Laatst Bijgewerkt 2018-11-19
Publicatiedatum 2018-11-14
Beoordeling 2.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite http://www.ranjotsingh.com
Ondersteunde Talen 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": [
        "pics\/*.png",
        "res.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}