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文件
下載Slack Custom Emoji Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } |