Custom Week Number - Google Calendar
Extension to set custom week number for Google calendar
Cos'è Custom Week Number - Google Calendar?
Custom Week Number - Google Calendar è un'estensione di Chrome sviluppata da zf, e la sua funzione principale è "Extension to set custom week number for Google calendar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Custom Week Number - Google Calendar
Scarica i file di estensione Custom Week Number - Google Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Custom Week Number - Google Calendar |
ID | fjaidefhllhbbhlfnnopcoljnhimiakp |
URL Ufficiale | https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp |
Descrizione | Extension to set custom week number for Google calendar |
Dimensione del File | 112 KB |
Conteggio Installazioni | 246 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2023-02-18 |
Data di Pubblicazione | 2023-02-13 |
Sviluppatore | zf |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |