GSuite Custom Toolbar
This extension being used to easily access Google (GSuite Products) tools with single click.
GSuite Custom Toolbarคืออะไร?
GSuite Custom Toolbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ghanshyam Katriya และคุณลักษณะหลักของมันคือ "This extension being used to easily access Google (GSuite Products) tools with single click."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GSuite Custom Toolbar
ดาวน์โหลดไฟล์ส่วนขยาย GSuite Custom Toolbar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GSuite Custom Toolbar is an extension being used to easily access Google tools (GSuite Products) tools with single click from Gmail. Changelog: [v0.2.0] - Fix issue of search not working in Gmail - Added Google Meet How to use : - Install this extension - Enable/Disable options for links - Use it GSuite is an registered trademark of Google. We are not affiliated with Google.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GSuite Custom Toolbar |
ID | mjcajbgmgplmelmnafihhbfhiecioaic |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic |
คำอธิบาย | This extension being used to easily access Google (GSuite Products) tools with single click. |
ขนาดไฟล์ | 81.85 KB |
จำนวนการติดตั้ง | 3,000 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2020-05-05 |
วันที่เผยแพร่ | 2020-05-04 |
ผู้พัฒนา | Ghanshyam Katriya |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GSuite Custom Toolbar", "description": "This extension being used to easily access Google (GSuite Products) tools with single click.", "version": "0.2.0", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "options.html", "default_title": "GSuite Custom Toolbar" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "jquery.min.js", "actions.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "jquery.min.js", "actions.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ "*" ] } |