Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Wat is Slack Emoji Switcher?
Slack Emoji Switcher is een Chrome-extensie ontwikkeld door TETRA2000, en de belangrijkste functie is "This extension allows the user to change emoji in the slack page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Slack Emoji Switcher
Download Slack Emoji Switcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Change Slack's emoji style.
Basisinformatie over de Extensie
Naam | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
Officiële URL | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
Beschrijving | This extension allows the user to change emoji in the slack page. |
Bestandsgrootte | 14.07 KB |
Aantal Installaties | 15 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2018-02-08 |
Publicatiedatum | 2018-02-08 |
Ontwikkelaar | TETRA2000 |
Betalingswijze | free |
Extensiewebsite | https://github.com/TETRA2000/slack-emoji-switcher |
Help Pagina-URL | https://github.com/TETRA2000/slack-emoji-switcher/issues |
Ondersteunde Talen | 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" ] } ] } |