EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Hvad er EmojiDisplay?

EmojiDisplay er en Chrome-udvidelse udviklet af ranjotsingh, og dens hovedfunktion er "This extension replaces emoticon text with the Apple Emojis.".

Download EmojiDisplay-udvidelses-CRX-fil

Download EmojiDisplay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension replaces emoticon text with the Apple Emojis.                    

Grundlæggende oplysninger om udvidelsen

Navn EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
Officiel URL https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
Beskrivelse This extension replaces emoticon text with the Apple Emojis.
Filstørrelse 9.82 KB
Antal Installationer 15
Nuværende Version 0.1
Senest Opdateret 2017-11-02
Udgivelsesdato 2017-11-02
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler ranjotsingh
Betalingsmetode free
Udvidelseswebsted https://www.ranjotsingh.com
Understøttede Sprog 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"
        }
    ]
}