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是由JmQu开发的Chrome扩展程序,该扩展的主要功能是“An extension to extend the Google Chat to have the basic functionality that Slack has.”。
扩展截图
下载Make Google Chat like Slack扩展crx文件
下载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" } |