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.
拡張機能の基本情報
名前 | |
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" } ] } |