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" ] } ] } |