Slack's Emoji Style Chooser

Do not like your emoji set on Slack? Pick one of six different Emoji styles!

Slack's Emoji Style Chooser là gì?

Slack's Emoji Style Chooser là một tiện ích mở rộng Chrome được phát triển bởi Shimmi, và tính năng chính của nó là "Do not like your emoji set on Slack? Pick one of six different Emoji styles!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Do not like your emoji set on Slack? Pick one of six different Emoji styles!

Available emoji styles:
* Apple
* Emojione
* Facebook
* Google
* Messenger
* Twitter

---

Starting with January 2018, Slack does no longer provide options to choose your Emoji style. See:
https://get.slack.help/hc/en-us/articles/115004846068-Slack-updates-and-changes#january-2018
https://get.slack.help/hc/en-us/articles/202931348-Emoji-and-emoticons#change-your-emoji-display

---

All product names, logos, and brands are property of their respective owners.

The corresponding images (linked Emoji sprites) and licencing notes can be found on this repository: https://github.com/iamcal/emoji-data

Source code of the extension can be found here: https://github.com/Shimmi/slack-emoji-style-chooser                    

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

Tên Slack's Emoji Style Chooser Slack's Emoji Style Chooser
ID ghhoeeojiokhdmaelkllggbhjnlfpbop
URL Chính Thức https://chrome.google.com/webstore/detail/slacks-emoji-style-choose/ghhoeeojiokhdmaelkllggbhjnlfpbop
Mô tả Do not like your emoji set on Slack? Pick one of six different Emoji styles!
Kích Thước Tệp 17.86 KB
Số Lần Cài Đặt 804
Phiên Bản Hiện Tại 0.10
Cập Nhật Lần Cuối 2018-07-23
Ngày Phát Hành 2018-07-23
Đánh Giá 2.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Shimmi
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Shimmi/slack-emoji-style-chooser
URL Trang Trợ Giúp https://github.com/Shimmi/slack-emoji-style-chooser/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack's Emoji Style Chooser",
    "description": "Do not like your emoji set on Slack? Pick one of six different Emoji styles!",
    "version": "0.10",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/Shimmi\/slack-emoji-style-chooser",
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.slack.com\/*"
            ],
            "js": [
                "styles.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "128": "icon.png"
    }
}