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란 무엇입니까?

Slack's Emoji Style Chooser은(는) Shimmi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Do not like your emoji set on Slack? Pick one of six different Emoji styles!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Slack's Emoji Style Chooser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Slack's Emoji Style Chooser Slack's Emoji Style Chooser
ID ghhoeeojiokhdmaelkllggbhjnlfpbop
공식 URL https://chrome.google.com/webstore/detail/slacks-emoji-style-choose/ghhoeeojiokhdmaelkllggbhjnlfpbop
설명 Do not like your emoji set on Slack? Pick one of six different Emoji styles!
파일 크기 17.86 KB
설치 횟수 804
현재 버전 0.10
최근 업데이트 2018-07-23
출시 날짜 2018-07-23
평점 2.50/5 총 8 개의 평점
개발자 Shimmi
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Shimmi/slack-emoji-style-chooser
도움말 페이지 URL https://github.com/Shimmi/slack-emoji-style-chooser/issues
지원되는 언어 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"
    }
}