EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
什么是EmojiDisplay?
EmojiDisplay是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces emoticon text with the Apple Emojis.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| ID | gichgflklefnkeffjbefmcagecfndbjl |
| 官方URL | 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"
}
]
} | |