Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
Emoji Assistant क्या है?
Emoji Assistant ritz078 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to autosuggest emojis while writing on the web."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Emoji Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Automatically suggest emojis from the dropdown. Works on text input boxes, textareas and contenteditables. If doest work try using after Command + Alt + Enter For any kind of issues please go to https://github.com/ritz078/emoji-assistant/issues and file an issue there.
एक्सटेंशन की मूल जानकारी
नाम | Emoji Assistant |
ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
आधिकारिक URL | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
विवरण | A chrome extension to autosuggest emojis while writing on the web. |
फ़ाइल का आकार | 2.01 MB |
स्थापना संख्या | 149 |
वर्तमान संस्करण | 0.3.2 |
अंतिम अपडेट | 2019-03-08 |
प्रकाशन तिथि | 2019-03-08 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | ritz078 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ritz078/emoji-assistant |
सहायता पृष्ठ URL | https://github.com/ritz078/emoji-assistant/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.3.2", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "options_page": "options.html", "default_locale": "en", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/vendor\/jquery.js", "scripts\/vendor\/jquery.textcomplete.js", "scripts\/contentscript.js" ], "css": [ "styles\/main.css" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "emoji-assistant" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/*.png" ] } |