Slack Custom Emoji Manager
Add the function to bulk add, remove, and download emoji to Slack.
Slack Custom Emoji Manager란 무엇입니까?
Slack Custom Emoji Manager은(는) nabekou29에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add the function to bulk add, remove, and download emoji to Slack."입니다.
확장 프로그램 스크린샷
Slack Custom Emoji Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add the following features to Slack's custom emoji management page. - Add more emoji at once - Delete all emoji at once - Download all emoji (zip) === Change Log === ・v1.2.1 - bugfix Fixed adding and deleting emoji to work. ・v1.2.0 Popup is released! You can now access the emoji customization faster.
확장 프로그램 기본 정보
이름 | Slack Custom Emoji Manager |
ID | cgipifjpcbhdppbjjphmgkmmgbeaggpc |
공식 URL | https://chromewebstore.google.com/detail/slack-custom-emoji-manage/cgipifjpcbhdppbjjphmgkmmgbeaggpc |
설명 | Add the function to bulk add, remove, and download emoji to Slack. |
파일 크기 | 112 KB |
설치 횟수 | 3,194 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2024-01-01 |
출시 날짜 | 2020-05-04 |
평점 | 3.67/5 총 6 개의 평점 |
개발자 | nabekou29 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/nabekou29/slack_custom_emoji_manager/blob/master/README.md |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_ext_name__", "short_name": "__MSG_ext_short_name__", "description": "__MSG_ext_desc__", "version": "1.3.0", "default_locale": "en", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "19": "icon24.png" }, "default_title": "Slack Custom Emoji Manager", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "main.css" ], "matches": [ "*:\/\/*.slack.com\/*" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "index.html", "icon128.png" ], "matches": [ "*:\/\/*.slack.com\/*" ] } ], "permissions": [ "storage", "webRequest", "declarativeNetRequest" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] }, "host_permissions": [ "*:\/\/*.slack.com\/*", "*:\/\/emoji.slack-edge.com\/*" ] } |