Custom Week Number - Google Calendar
Extension to set custom week number for Google calendar
Custom Week Number - Google Calendar là gì?
Custom Week Number - Google Calendar là một tiện ích mở rộng Chrome được phát triển bởi zf, và tính năng chính của nó là "Extension to set custom week number for Google calendar".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Custom Week Number - Google Calendar
Tải xuống các tệp mở rộng Custom Week Number - Google Calendar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Custom Week Number - Google Calendar |
ID | fjaidefhllhbbhlfnnopcoljnhimiakp |
URL Chính Thức | https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp |
Mô tả | Extension to set custom week number for Google calendar |
Kích Thước Tệp | 112 KB |
Số Lần Cài Đặt | 246 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2023-02-18 |
Ngày Phát Hành | 2023-02-13 |
Nhà Phát Triển | zf |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |