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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Google Calendar Export GCal to CSV Google Calendar Export GCal to CSV
ID acgppnopbibdaenembdhjpkmdigmmgkk
官方網址 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"
    ]
}