Copy Google Chat Links

Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.

什么是Copy Google Chat Links?

Copy Google Chat Links是由Avaneesh开发的Chrome扩展程序,该扩展的主要功能是“Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.”。

扩展截图

screenshot
screenshot
screenshot

下载Copy Google Chat Links扩展crx文件

下载Copy Google Chat Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Can enable the copy of direct links to Google Chat messages. Helpful for the teams in an organizational structure to share direct links to specific messages or threads from spaces and group chats they are part of.                    

扩展基本信息

名称 Copy Google Chat Links Copy Google Chat Links
ID egdhbgdninkgcdfdoclpbphljjhaiphc
官方URL https://chromewebstore.google.com/detail/copy-google-chat-links/egdhbgdninkgcdfdoclpbphljjhaiphc
简介 Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.
文件大小 72.73 KB
安装次数 482
当前版本 1.0.3
更新时间 2023-12-16
上架时间 2022-10-09
评分 5.00/5 共1次评分
开发者 Avaneesh
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/avaneeshtripathi/copy-google-chat-links
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Google Chat Links",
    "version": "1.0.3",
    "description": "Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-48.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-48.png",
        "128": "\/images\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "author": "Avaneesh Tripathi"
}