EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
Hvad er EmojiDisplay?
EmojiDisplay er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension replaces emoticon text with the Apple Emojis.".
Udvidelsesskærmbilleder
Download EmojiDisplay-udvidelses-CRX-fil
Download EmojiDisplay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | EmojiDisplay |
ID | gichgflklefnkeffjbefmcagecfndbjl |
Officiel URL | https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl |
Beskrivelse | This extension replaces emoticon text with the Apple Emojis. |
Filstørrelse | 18.6 MB |
Antal Installationer | 332 |
Nuværende Version | 0.1 |
Senest Opdateret | 2018-11-19 |
Udgivelsesdato | 2018-11-14 |
Bedømmelse | 2.00/5 Samlet 6 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | http://www.ranjotsingh.com |
Understøttede Sprog | 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" } ] } |