Slack's Emoji Style Chooser

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

O que é Slack's Emoji Style Chooser?

Slack's Emoji Style Chooser é uma extensão do Chrome desenvolvida por Shimmi, e sua principal característica é "Do not like your emoji set on Slack? Pick one of six different Emoji styles!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Slack's Emoji Style Chooser

Baixe arquivos de extensão Slack's Emoji Style Chooser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Slack's Emoji Style Chooser Slack's Emoji Style Chooser
ID ghhoeeojiokhdmaelkllggbhjnlfpbop
URL Oficial https://chrome.google.com/webstore/detail/slacks-emoji-style-choose/ghhoeeojiokhdmaelkllggbhjnlfpbop
Descrição Do not like your emoji set on Slack? Pick one of six different Emoji styles!
Tamanho do Arquivo 17.86 KB
Contagem de Instalações 804
Versão Atual 0.10
Última Atualização 2018-07-23
Data de Publicação 2018-07-23
Classificação 2.50/5 Total de 8 Avaliações
Desenvolvedor Shimmi
Tipo de Pagamento free
Site da Extensão https://github.com/Shimmi/slack-emoji-style-chooser
URL da Página de Ajuda https://github.com/Shimmi/slack-emoji-style-chooser/issues
Idiomas Suportados 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"
    }
}