EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

什麼是EmojiDisplay?

EmojiDisplay是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension replaces emoticon text with the Apple Emojis.”。

擴展截圖

screenshot

下載EmojiDisplay擴展crx文件

下載EmojiDisplay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 EmojiDisplay EmojiDisplay
ID gichgflklefnkeffjbefmcagecfndbjl
官方網址 https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl
簡介 This extension replaces emoticon text with the Apple Emojis.
檔案大小 18.6 MB
安裝次數 332
目前版本 0.1
更新時間 2018-11-19
上架時間 2018-11-14
評分 2.00/5 共 6 次評分
開發者 Unknown
付費類型 free
擴展官網 http://www.ranjotsingh.com
支援的語言 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"
        }
    ]
}