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
Eメール [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"
}