Custom Week Number - Google Calendar
Extension to set custom week number for Google calendar
O que é Custom Week Number - Google Calendar?
Custom Week Number - Google Calendar é uma extensão do Chrome desenvolvida por zf, e sua principal característica é "Extension to set custom week number for Google calendar".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Custom Week Number - Google Calendar
Baixe arquivos de extensão Custom Week Number - Google Calendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | Custom Week Number - Google Calendar |
ID | fjaidefhllhbbhlfnnopcoljnhimiakp |
URL Oficial | https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp |
Descrição | Extension to set custom week number for Google calendar |
Tamanho do Arquivo | 112 KB |
Contagem de Instalações | 246 |
Versão Atual | 2.0.0 |
Última Atualização | 2023-02-18 |
Data de Publicação | 2023-02-13 |
Desenvolvedor | zf |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |