Slack Custom Emoji Manager

Add the function to bulk add, remove, and download emoji to Slack.

Slack Custom Emoji Manager là gì?

Slack Custom Emoji Manager là một tiện ích mở rộng Chrome được phát triển bởi nabekou29, và tính năng chính của nó là "Add the function to bulk add, remove, and download emoji to Slack.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Slack Custom Emoji Manager

Tải xuống các tệp mở rộng Slack Custom Emoji Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Slack Custom Emoji Manager Slack Custom Emoji Manager
ID cgipifjpcbhdppbjjphmgkmmgbeaggpc
URL Chính Thức https://chromewebstore.google.com/detail/slack-custom-emoji-manage/cgipifjpcbhdppbjjphmgkmmgbeaggpc
Mô tả Add the function to bulk add, remove, and download emoji to Slack.
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 3,194
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2024-01-01
Ngày Phát Hành 2020-05-04
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển nabekou29
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nabekou29/slack_custom_emoji_manager/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}