Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
什么是Slack Emoji Switcher?
Slack Emoji Switcher是由TETRA2000开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to change emoji in the slack page.”。
扩展截图
下载Slack Emoji Switcher扩展crx文件
下载Slack Emoji Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Change Slack's emoji style.
扩展基本信息
名称 | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
官方URL | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
简介 | This extension allows the user to change emoji in the slack page. |
文件大小 | 14.07 KB |
安装次数 | 15 |
当前版本 | 1.0.1 |
更新时间 | 2018-02-08 |
上架时间 | 2018-02-08 |
开发者 | TETRA2000 |
付费类型 | free |
扩展官网 | https://github.com/TETRA2000/slack-emoji-switcher |
帮助页面URL | https://github.com/TETRA2000/slack-emoji-switcher/issues |
支持的语言 | 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" ] } ] } |