EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
Co to jest EmojiDisplay?
EmojiDisplay to rozszerzenie Chrome opracowane przez ranjotsingh, a jego główną funkcją jest „This extension replaces emoticon text with the Apple Emojis.”.
Pobierz plik CRX rozszerzenia EmojiDisplay
Pobierz pliki rozszerzeń EmojiDisplay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension replaces emoticon text with the Apple Emojis.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | doomojimaojclkcipjldpmdbiedgaoop |
Oficjalny URL | https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop |
Opis | This extension replaces emoticon text with the Apple Emojis. |
Rozmiar pliku | 9.82 KB |
Liczba instalacji | 15 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2017-11-02 |
Data Publikacji | 2017-11-02 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | ranjotsingh |
Typ Płatności | free |
Strona Rozszerzenia | https://www.ranjotsingh.com |
Obsługiwane Języki | 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" } ] } |