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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |