GM Assistant
GM Assistant
GM Assistantคืออะไร?
GM Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ayudh Kumar Gupta และคุณลักษณะหลักของมันคือ "GM Assistant"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GM Assistant
ดาวน์โหลดไฟล์ส่วนขยาย GM Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GM Assistant |
ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
คำอธิบาย | GM Assistant |
ขนาดไฟล์ | 49.11 KB |
จำนวนการติดตั้ง | 51 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-06-18 |
วันที่เผยแพร่ | 2021-03-29 |
คะแนน | 5.00/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Ayudh Kumar Gupta |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GM Assistant", "version": "1.1", "description": "GM Assistant", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "constants.js", "storageUtil.js", "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |