Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
What is Slack Emoji Switcher?
Slack Emoji Switcher is a Chrome extension developed by TETRA2000, and its main feature is "This extension allows the user to change emoji in the slack page.".
Extension Screenshots
Download Slack Emoji Switcher Extension CRX File
Download Slack Emoji Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Change Slack's emoji style.
Extension Basic Information
Name | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
Official URL | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
Description | This extension allows the user to change emoji in the slack page. |
File Size | 14.07 KB |
Installation Count | 15 |
Current Version | 1.0.1 |
Last Updated | 2018-02-08 |
Publish Date | 2018-02-08 |
Developer | TETRA2000 |
Payment Type | free |
Extension Website | https://github.com/TETRA2000/slack-emoji-switcher |
Help Page URL | https://github.com/TETRA2000/slack-emoji-switcher/issues |
Supported Languages | 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" ] } ] } |