Timezone Converter for Google Calendar
This extension helps the user easily convert between timezones while using Google Calendar.
Timezone Converter for Google Calendarคืออะไร?
Timezone Converter for Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nik.advani16 และคุณลักษณะหลักของมันคือ "This extension helps the user easily convert between timezones while using Google Calendar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timezone Converter for Google Calendar
ดาวน์โหลดไฟล์ส่วนขยาย Timezone Converter for Google Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension helps the user easily convert between timezones while using Google Calendar.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Timezone Converter for Google Calendar |
ID | llpjnojfbpbeccalkgbjhlohmmkchljp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/timezone-converter-for-go/llpjnojfbpbeccalkgbjhlohmmkchljp |
คำอธิบาย | This extension helps the user easily convert between timezones while using Google Calendar. |
ขนาดไฟล์ | 12.91 KB |
จำนวนการติดตั้ง | 212 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2022-08-13 |
วันที่เผยแพร่ | 2022-08-10 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | nik.advani16 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Timezone Converter for Google Calendar", "version": "0.2", "web_accessible_resources": [ { "resources": [ "icon.png" ], "matches": [ "https:\/\/calendar.google.com\/*" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ] } |