Make Google Chat like Slack
An extension to extend the Google Chat to have the basic functionality that Slack has.
Make Google Chat like Slackคืออะไร?
Make Google Chat like Slack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JmQu และคุณลักษณะหลักของมันคือ "An extension to extend the Google Chat to have the basic functionality that Slack has."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Make Google Chat like Slack
ดาวน์โหลดไฟล์ส่วนขยาย Make Google Chat like Slack ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is for people who get used to Slack to engage Google Chat with seamless experience. This is inspired by the Chrome Extension "Google Chat thread links & quote reply". https://chrome.google.com/webstore/detail/google-chat-thread-links/aogkhbmeeckelbhfemleoajbglamokbc?hl=en But since thread is only one of many pain points we are facing day to day, why not take one step further to have more fancy features such as folding threads, thread heading, reply numbers, etc. I will take baby steps to include all those features and more. Functionalities: - thread link - quick reply - thread heading - folding threads - reply numbers
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Make Google Chat like Slack |
ID | oilfeenjkfedhlpijdhgbhdkdkjdmdnc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/make-google-chat-like-sla/oilfeenjkfedhlpijdhgbhdkdkjdmdnc |
คำอธิบาย | An extension to extend the Google Chat to have the basic functionality that Slack has. |
ขนาดไฟล์ | 66.44 KB |
จำนวนการติดตั้ง | 562 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2021-09-18 |
วันที่เผยแพร่ | 2021-09-18 |
คะแนน | 2.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | JmQu |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/SanCoder-Q/slackify-gchat |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make Google Chat like Slack", "description": "An extension to extend the Google Chat to have the basic functionality that Slack has.", "version": "0.1.1", "icons": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" }, "browser_action": { "default_icon": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" } }, "permissions": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/*" ], "content_scripts": [ { "js": [ "bundle.min.js" ], "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/*" ], "all_frames": true, "run_at": "document_end" } ], "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/github.com\/SanCoder-Q\/slackify-gchat" } |