Google Calendar Export GCal to CSV
Extracts GCal Events and Search Results into a CSV export. Multiple language support.
什么是Google Calendar Export GCal to CSV?
Google Calendar Export GCal to CSV是由Chetan Ganatra开发的Chrome扩展程序,该扩展的主要功能是“Extracts GCal Events and Search Results into a CSV export. Multiple language support.”。
扩展截图
下载Google Calendar Export GCal to CSV扩展crx文件
下载Google Calendar Export GCal to CSV扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A no-nonsense plugin to export your Google Calendar (gCal) scheduled events or search output into .CSV file format. It also computes the overall time of your events and adds an extra duration field. Limited support for International languages. (Spanish included!) Useful for professionals (including freelancers) who use Google Calendar to capture their tasks across projects and refer it for billing their clients. Feedback and feature requests welcome. Project would also be hosted on github for community to contribute. Chetan Ganatra.
扩展基本信息
名称 | |
ID | acgppnopbibdaenembdhjpkmdigmmgkk |
官方URL | https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk |
简介 | Extracts GCal Events and Search Results into a CSV export. Multiple language support. |
文件大小 | 8.21 KB |
安装次数 | 982 |
当前版本 | 1.0.0 |
更新时间 | 2018-07-14 |
上架时间 | 2018-07-13 |
评分 | 2.83/5 共12次评分 |
开发者 | Chetan Ganatra |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Calendar Export GCal to CSV", "short_name": "Calendar Export", "version": "1.0.0", "manifest_version": 2, "description": "Extracts GCal Events and Search Results into a CSV export. Multiple language support.", "homepage_url": "http:\/\/www.github.com\/chetanganatra", "icons": { "128": "icons\/calendar-download.png" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "js\/extractEvents.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "GCal Events Export" }, "permissions": [ "activeTab" ] } |