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
公式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
Eメール [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"
    ]
}