Custom Week Number - Google Calendar
Extension to set custom week number for Google calendar
Custom Week Number - Google Calendarคืออะไร?
Custom Week Number - Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zf และคุณลักษณะหลักของมันคือ "Extension to set custom week number for Google calendar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Week Number - Google Calendar
ดาวน์โหลดไฟล์ส่วนขยาย Custom Week Number - Google Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension to set custom week number for Google Calendar. How to use? 1. Install the extension 2. Click the extension icon 3. Enter first date of first week in the pop-up and click set Features coming soon: 1. add support for custom views (only support month view for now)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Custom Week Number - Google Calendar |
ID | fjaidefhllhbbhlfnnopcoljnhimiakp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp |
คำอธิบาย | Extension to set custom week number for Google calendar |
ขนาดไฟล์ | 112 KB |
จำนวนการติดตั้ง | 246 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2023-02-18 |
วันที่เผยแพร่ | 2023-02-13 |
ผู้พัฒนา | zf |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Custom Week Number - Google Calendar ", "description": "Extension to set custom week number for Google calendar", "version": "2.0.0", "manifest_version": 3, "author": "zf", "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html", "default_title": "Custom Week Number" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "jquery-3.6.3.min.js", "main.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "main.js", "jquery-3.6.3.min.js", "pp.png" ], "matches": [ "https:\/\/calendar.google.com\/*" ] } ], "permissions": [ "tabs", "storage" ], "icons": { "128": "logov2.png" } } |