EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Was ist EmojiDisplay?

EmojiDisplay ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces emoticon text with the Apple Emojis.".

Erweiterungsscreenshots

screenshot

EmojiDisplay-Erweiterungs-CRX-Datei herunterladen

Laden Sie EmojiDisplay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name EmojiDisplay EmojiDisplay
ID gichgflklefnkeffjbefmcagecfndbjl
Offizielle URL https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl
Beschreibung This extension replaces emoticon text with the Apple Emojis.
Dateigröße 18.6 MB
Installationsanzahl 332
Aktuelle Version 0.1
Letztes Update 2018-11-19
Veröffentlichungsdatum 2018-11-14
Bewertung 2.00/5 Insgesamt 6 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite http://www.ranjotsingh.com
Unterstützte Sprachen 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"
        }
    ]
}