Emoji Generator
This is an extension for convenient use of the Emoji Generator
Emoji Generator क्या है?
Emoji Generator https://emoji-gen.ninja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an extension for convenient use of the Emoji Generator"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Emoji Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Emoji Generator is a tool to easily generate reaction emoticons and emojis for chats such as Slack. With this extension, you can easily register generate emojis directly with your Slack team. Let's use emojis to achieve smooth communication!! --- Emoji Generator browser extension is developed with open source. The source code can be freely used or modified according to the MIT License. https://github.com/emoji-gen/browser-extension Copyright (C) 2017-2022 Emoji Generator
एक्सटेंशन की मूल जानकारी
नाम | Emoji Generator |
ID | ghbhakkknnmocmiilhneahbkiaegdnmf |
आधिकारिक URL | https://chromewebstore.google.com/detail/emoji-generator/ghbhakkknnmocmiilhneahbkiaegdnmf |
विवरण | This is an extension for convenient use of the Emoji Generator |
फ़ाइल का आकार | 126 KB |
स्थापना संख्या | 20,000 |
वर्तमान संस्करण | 1.1.4 |
अंतिम अपडेट | 2022-07-26 |
प्रकाशन तिथि | 2019-12-23 |
रेटिंग | 4.56/5 कुल 9 रेटिंग्स |
डेवलपर | https://emoji-gen.ninja |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "description": "__MSG_description__", "default_locale": "en", "homepage_url": "https:\/\/emoji-gen.ninja", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "version": "1.1.4", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/emoji-gen.ninja\/*" ], "js": [ "content_scripts.js" ], "run_at": "document_end", "all_frames": false } ], "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "host_permissions": [ "https:\/\/emoji-gen.ninja\/*", "https:\/\/*.slack.com\/*" ] } |