Copy Google Chat Links
Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.
Was ist Copy Google Chat Links?
Copy Google Chat Links ist eine Chrome-Erweiterung, die von Avaneesh entwickelt wurde, und ihr Hauptmerkmal ist "Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.".
Erweiterungsscreenshots
Copy Google Chat Links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Google Chat Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Copy Google Chat Links |
ID | egdhbgdninkgcdfdoclpbphljjhaiphc |
Offizielle URL | https://chromewebstore.google.com/detail/copy-google-chat-links/egdhbgdninkgcdfdoclpbphljjhaiphc |
Beschreibung | Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces. |
Dateigröße | 72.73 KB |
Installationsanzahl | 482 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2023-12-16 |
Veröffentlichungsdatum | 2022-10-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Avaneesh |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/avaneeshtripathi/copy-google-chat-links |
Unterstützte Sprachen | 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" } |