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文件
下载Google Chat My Favorites扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } |