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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}