Custom Week Number - Google Calendar
Extension to set custom week number for Google calendar
什麼是Custom Week Number - Google Calendar?
Custom Week Number - Google Calendar是由zf開發的Chrome擴展程式,該擴展的主要功能是“Extension to set custom week number for Google calendar”。
擴展截圖
下載Custom Week Number - Google Calendar擴展crx文件
下載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 |
官方網址 | 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" } } |