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ファイルをダウンロード

Slack's Emoji Style Chooser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}