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 là gì?
Make Google Chat like Slack là một tiện ích mở rộng Chrome được phát triển bởi JmQu, và tính năng chính của nó là "An extension to extend the Google Chat to have the basic functionality that Slack has.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Make Google Chat like Slack
Tải xuống các tệp mở rộng Make Google Chat like Slack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Make Google Chat like Slack |
ID | oilfeenjkfedhlpijdhgbhdkdkjdmdnc |
URL Chính Thức | https://chromewebstore.google.com/detail/make-google-chat-like-sla/oilfeenjkfedhlpijdhgbhdkdkjdmdnc |
Mô tả | An extension to extend the Google Chat to have the basic functionality that Slack has. |
Kích Thước Tệp | 66.44 KB |
Số Lần Cài Đặt | 562 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2021-09-18 |
Ngày Phát Hành | 2021-09-18 |
Đánh Giá | 2.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | JmQu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SanCoder-Q/slackify-gchat |
Ngôn Ngữ Được Hỗ Trợ | 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" } |