Slack Enter Key Modifier
Enter should send message always on Slack.com
Slack Enter Key Modifierคืออะไร?
Slack Enter Key Modifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Satoru Takanami และคุณลักษณะหลักของมันคือ "Enter should send message always on Slack.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Slack Enter Key Modifier
ดาวน์โหลดไฟล์ส่วนขยาย Slack Enter Key Modifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you turned off checkbox on input area, this extension works below. (NOTE: Default is on) Start a new line: - Enter Post message: - Shift + Enter - Ctrl + Enter - ⌘ + Enter (Mac)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Slack Enter Key Modifier |
ID | ejlmecppipaakakoclcfmlnheifdngeg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/slack-enter-key-modifier/ejlmecppipaakakoclcfmlnheifdngeg |
คำอธิบาย | Enter should send message always on Slack.com |
ขนาดไฟล์ | 36.67 KB |
จำนวนการติดตั้ง | 545 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2017-11-17 |
วันที่เผยแพร่ | 2017-11-16 |
คะแนน | 4.53/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | Satoru Takanami |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/storz |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.6", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "https:\/\/*.slack.com\/messages\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.slack.com\/messages\/*" ], "js": [ "scripts\/contentscript.js", "scripts\/checkbox.js" ], "css": [ "styles\/checkbox.css" ], "run_at": "document_end", "all_frames": false } ] } |