Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Vad är Slack Emoji Switcher?
Slack Emoji Switcher är en Chrome-tillägg utvecklad av TETRA2000, och dess huvudfunktion är "This extension allows the user to change emoji in the slack page.".
Tilläggsskärmbilder
Ladda ner Slack Emoji Switcher-förlängningens CRX-fil
Ladda ner Slack Emoji Switcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Change Slack's emoji style.
Grundläggande Information om Tillägg
Namn | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
Officiell webbadress | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
Beskrivning | This extension allows the user to change emoji in the slack page. |
Filstorlek | 14.07 KB |
Antal Installationer | 15 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2018-02-08 |
Publiceringsdatum | 2018-02-08 |
Utvecklare | TETRA2000 |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/TETRA2000/slack-emoji-switcher |
Hjälpsida URL | https://github.com/TETRA2000/slack-emoji-switcher/issues |
Stödda Språk | 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" ] } ] } |