Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Cos'è Slack Emoji Switcher?
Slack Emoji Switcher è un'estensione di Chrome sviluppata da TETRA2000, e la sua funzione principale è "This extension allows the user to change emoji in the slack page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Slack Emoji Switcher
Scarica i file di estensione Slack Emoji Switcher 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
Change Slack's emoji style. Informazioni di Base sull'Estensione
| Nome | |
| ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
| URL Ufficiale | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
| Descrizione | This extension allows the user to change emoji in the slack page. |
| Dimensione del File | 14.07 KB |
| Conteggio Installazioni | 15 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2018-02-08 |
| Data di Pubblicazione | 2018-02-08 |
| Sviluppatore | TETRA2000 |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/TETRA2000/slack-emoji-switcher |
| URL della Pagina di Aiuto | https://github.com/TETRA2000/slack-emoji-switcher/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Slack Emoji Switcher",
"description": "This extension allows the user to change emoji in the slack page.",
"version": "1.0.1",
"browser_action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"tabs",
"https:\/\/*.slack.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.slack.com\/*"
],
"js": [
"changeemoji.js"
]
}
]
} | |