EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
What is EmojiDisplay?
EmojiDisplay is a Chrome extension developed by ranjotsingh, and its main feature is "This extension replaces emoticon text with the Apple Emojis.".
Download EmojiDisplay Extension CRX File
Download EmojiDisplay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension replaces emoticon text with the Apple Emojis. Extension Basic Information
| Name | |
| ID | doomojimaojclkcipjldpmdbiedgaoop |
| Official URL | https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop |
| Description | This extension replaces emoticon text with the Apple Emojis. |
| File Size | 9.82 KB |
| Installation Count | 15 |
| Current Version | 0.1 |
| Last Updated | 2017-11-02 |
| Publish Date | 2017-11-02 |
| Rating | 1.00/5 Total 1 Ratings |
| Developer | ranjotsingh |
| Payment Type | free |
| Extension Website | https://www.ranjotsingh.com |
| Supported Languages | 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"
}
]
} | |