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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |