EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

什么是EmojiDisplay?

EmojiDisplay是由ranjotsingh开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces emoticon text with the Apple Emojis.”。

下载EmojiDisplay扩展crx文件

下载EmojiDisplay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension replaces emoticon text with the Apple Emojis.                    

扩展基本信息

名称 EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
官方URL https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
简介 This extension replaces emoticon text with the Apple Emojis.
文件大小 9.82 KB
安装次数 15
当前版本 0.1
更新时间 2017-11-02
上架时间 2017-11-02
评分 1.00/5 共1次评分
开发者 ranjotsingh
付费类型 free
扩展官网 https://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": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}