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"
}
]
} | |