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 |
官方URL | 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" ] } } |