Kalendario for Google Calendar™
Shows event descriptions in Google Calendar™.
什麼是Kalendario for Google Calendar™?
Kalendario for Google Calendar™是由https://kalendario.org開發的Chrome擴展程式,該擴展的主要功能是“Shows event descriptions in Google Calendar™.”。
擴展截圖
下載Kalendario for Google Calendar™擴展crx文件
下載Kalendario for Google Calendar™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Kalendario enhances the functionality of Google Calendar by displaying descriptions under events in the agenda and search pages. This simplifies the work with the application - you don't have to click the specific event to show its description. Great for keeping a workout log, a daily journal or weekly/monthly/quarterly reviews. - 📅 shows event descriptions in agenda view - 📆 shows event descriptions in search view - ✔️ works in Chrome, Opera, Vivaldi, Brave, ... - 🚫 no ads or tracking
擴展基本資訊
名稱 | Kalendario for Google Calendar™ |
ID | ccoehijdbponhcemihobmdpaeenmgchg |
官方網址 | https://chromewebstore.google.com/detail/kalendario-for-google-cal/ccoehijdbponhcemihobmdpaeenmgchg |
簡介 | Shows event descriptions in Google Calendar™. |
檔案大小 | 37.28 KB |
安裝次數 | 679 |
目前版本 | 0.3.3 |
更新時間 | 2022-04-25 |
上架時間 | 2020-04-10 |
評分 | 3.67/5 共 3 次評分 |
開發者 | https://kalendario.org |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://kalendario.org |
說明頁面URL | https://github.com/crazko/kalendario/issues |
支援的語言 | en,sk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "short_name": "__MSG_extShortName__", "description": "__MSG_extDesc__", "version": "0.3.3", "homepage_url": "https:\/\/kalendario.org", "manifest_version": 2, "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "identity", "https:\/\/www.googleapis.com\/*", "https:\/\/accounts.google.com\/*" ], "oauth2": { "client_id": "420802057769-b3e2d1ddmo9hgpakme96972unemp2cj4.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar.readonly" ] } } |