Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Slack Emoji Switcherคืออะไร?
Slack Emoji Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TETRA2000 และคุณลักษณะหลักของมันคือ "This extension allows the user to change emoji in the slack page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Slack Emoji Switcher
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |