Copy Google Chat Links
Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.
Cos'è Copy Google Chat Links?
Copy Google Chat Links è un'estensione di Chrome sviluppata da Avaneesh, e la sua funzione principale è "Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy Google Chat Links
Scarica i file di estensione Copy Google Chat Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Copy Google Chat Links |
ID | egdhbgdninkgcdfdoclpbphljjhaiphc |
URL Ufficiale | https://chromewebstore.google.com/detail/copy-google-chat-links/egdhbgdninkgcdfdoclpbphljjhaiphc |
Descrizione | Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces. |
Dimensione del File | 72.73 KB |
Conteggio Installazioni | 482 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2023-12-16 |
Data di Pubblicazione | 2022-10-09 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Avaneesh |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/avaneeshtripathi/copy-google-chat-links |
Lingue Supportate | 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" } |