EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Wat is EmojiDisplay?

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

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

                        This extension replaces emoticon text with the Apple Emojis.                    

Basisinformatie over de Extensie

Naam EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
Officiële URL https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
Beschrijving This extension replaces emoticon text with the Apple Emojis.
Bestandsgrootte 9.82 KB
Aantal Installaties 15
Huidige Versie 0.1
Laatst Bijgewerkt 2017-11-02
Publicatiedatum 2017-11-02
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ranjotsingh
Betalingswijze free
Extensiewebsite https://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": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}