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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Avaneesh และคุณลักษณะหลักของมันคือ "Copy direct links for Google Chat messages in one click. Supports direct messages, group chats and spaces."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Google Chat Links
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } |