Google Chat My Favorites
Adds button to add the topics to your favorites list on Google Chat
Google Chat My Favorites란 무엇입니까?
Google Chat My Favorites은(는) emrahonder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds button to add the topics to your favorites list on Google Chat"입니다.
확장 프로그램 스크린샷
Google Chat My Favorites 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Google Chat does not have any function to help you make any topics your favourites This plugin adds a button to each thread to add them to your favourites list and you can easily reach them. If you like it, consider giving to help keep the extension running. https://www.buymeacoffee.com/emrahonder
확장 프로그램 기본 정보
이름 | Google Chat My Favorites |
ID | jamfmodpfjlcoemkkphkpmldidhkkogd |
공식 URL | https://chromewebstore.google.com/detail/google-chat-my-favorites/jamfmodpfjlcoemkkphkpmldidhkkogd |
설명 | Adds button to add the topics to your favorites list on Google Chat |
파일 크기 | 16.55 KB |
설치 횟수 | 749 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2022-11-07 |
출시 날짜 | 2022-09-26 |
평점 | 3.86/5 총 7 개의 평점 |
개발자 | emrahonder |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "content_scripts": [ { "all_frames": true, "js": [ "style.js", "constants.js", "utils.js", "content.js" ], "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "description": "Adds button to add the topics to your favorites list on Google Chat", "manifest_version": 3, "name": "Google Chat My Favorites", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.4" } |