Slack's Emoji Style Chooser

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

Cos'è Slack's Emoji Style Chooser?

Slack's Emoji Style Chooser è un'estensione di Chrome sviluppata da Shimmi, e la sua funzione principale è "Do not like your emoji set on Slack? Pick one of six different Emoji styles!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Slack's Emoji Style Chooser

Scarica i file di estensione Slack's Emoji Style Chooser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Slack's Emoji Style Chooser Slack's Emoji Style Chooser
ID ghhoeeojiokhdmaelkllggbhjnlfpbop
URL Ufficiale https://chrome.google.com/webstore/detail/slacks-emoji-style-choose/ghhoeeojiokhdmaelkllggbhjnlfpbop
Descrizione Do not like your emoji set on Slack? Pick one of six different Emoji styles!
Dimensione del File 17.86 KB
Conteggio Installazioni 804
Versione Corrente 0.10
Ultimo Aggiornamento 2018-07-23
Data di Pubblicazione 2018-07-23
Valutazione 2.50/5 Totale 8 Valutazioni
Sviluppatore Shimmi
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Shimmi/slack-emoji-style-chooser
URL della Pagina di Aiuto https://github.com/Shimmi/slack-emoji-style-chooser/issues
Lingue Supportate 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"
    }
}