EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
Vad är EmojiDisplay?
EmojiDisplay är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension replaces emoticon text with the Apple Emojis.".
Tilläggsskärmbilder
Ladda ner EmojiDisplay-förlängningens CRX-fil
Ladda ner EmojiDisplay-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | gichgflklefnkeffjbefmcagecfndbjl |
| Officiell webbadress | https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl |
| Beskrivning | This extension replaces emoticon text with the Apple Emojis. |
| Filstorlek | 18.6 MB |
| Antal Installationer | 332 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2018-11-19 |
| Publiceringsdatum | 2018-11-14 |
| Betyg | 2.00/5 Totalt 6 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Tilläggswebbplats | http://www.ranjotsingh.com |
| Stödda Språk | 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"
}
]
} | |