Slack Emoji Switcher

This extension allows the user to change emoji in the slack page.

Slack Emoji Switcher là gì?

Slack Emoji Switcher là một tiện ích mở rộng Chrome được phát triển bởi TETRA2000, và tính năng chính của nó là "This extension allows the user to change emoji in the slack page.".

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

screenshot

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

Tải xuống các tệp mở rộng Slack Emoji Switcher 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

                        Change Slack's emoji style.                    

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

Tên Slack Emoji Switcher Slack Emoji Switcher
ID pkhpifkaaibiiolelhdkhijfnkklbjoj
URL Chính Thức https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj
Mô tả This extension allows the user to change emoji in the slack page.
Kích Thước Tệp 14.07 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-02-08
Ngày Phát Hành 2018-02-08
Nhà Phát Triển TETRA2000
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TETRA2000/slack-emoji-switcher
URL Trang Trợ Giúp https://github.com/TETRA2000/slack-emoji-switcher/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack Emoji Switcher",
    "description": "This extension allows the user to change emoji in the slack page.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*.slack.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "changeemoji.js"
            ]
        }
    ]
}