Copy Google Chat Links

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

Co to jest Copy Google Chat Links?

Copy Google Chat Links to rozszerzenie Chrome opracowane przez Avaneesh, a jego główną funkcją jest „Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Copy Google Chat Links

Pobierz pliki rozszerzeń Copy Google Chat Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy Google Chat Links Copy Google Chat Links
ID egdhbgdninkgcdfdoclpbphljjhaiphc
Oficjalny URL https://chromewebstore.google.com/detail/copy-google-chat-links/egdhbgdninkgcdfdoclpbphljjhaiphc
Opis Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.
Rozmiar pliku 72.73 KB
Liczba instalacji 482
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-12-16
Data Publikacji 2022-10-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Avaneesh
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/avaneeshtripathi/copy-google-chat-links
Obsługiwane Języki 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"
}