Auto Open Add-on
Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Auto Open Add-onคืออะไร?
Auto Open Add-on เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://darsoft.es และคุณลักษณะหลักของมันคือ "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Open Add-on
ดาวน์โหลดไฟล์ส่วนขยาย Auto Open Add-on ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension automatically opens the Workspace addon you like when the Google service is started in your browser (addon sidebar is shown on page load). It supports addons from Gmail, Google Calendar, Google Drive and Google Docs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Auto Open Add-on |
ID | bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
คำอธิบาย | Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts. |
ขนาดไฟล์ | 17.4 KB |
จำนวนการติดตั้ง | 783 |
เวอร์ชันปัจจุบัน | 0.28 |
อัปเดตครั้งล่าสุด | 2021-05-09 |
วันที่เผยแพร่ | 2021-04-18 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://darsoft.es |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | http://darsoft.es/contact-us/ |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Open Add-on", "version": "0.28", "description": "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/calendar.google.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/docs.google.com\/*" ], "js": [ "autoopenaddon.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "Auto Open Add-on", "default_popup": "popup.html", "default_icon": { "16": "images\/autoopenaddon16.png", "32": "images\/autoopenaddon32.png", "48": "images\/autoopenaddon48.png", "128": "images\/autoopenaddon128.png" } }, "icons": { "16": "images\/autoopenaddon16.png", "32": "images\/autoopenaddon32.png", "48": "images\/autoopenaddon48.png", "128": "images\/autoopenaddon128.png" }, "manifest_version": 2 } |