Emoji Generator
This is an extension for convenient use of the Emoji Generator
什么是Emoji Generator?
Emoji Generator是由https://emoji-gen.ninja开发的Chrome扩展程序,该扩展的主要功能是“This is an extension for convenient use of the Emoji Generator”。
扩展截图
下载Emoji Generator扩展crx文件
下载Emoji Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } |