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
官方網址 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"
}