Google Calendar Export GCal to CSV

Extracts GCal Events and Search Results into a CSV export. Multiple language support.

Was ist Google Calendar Export GCal to CSV?

Google Calendar Export GCal to CSV ist eine Chrome-Erweiterung, die von Chetan Ganatra entwickelt wurde, und ihr Hauptmerkmal ist "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".

Erweiterungsscreenshots

screenshot

Google Calendar Export GCal to CSV-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Calendar Export GCal to CSV-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Calendar Export GCal to CSV Google Calendar Export GCal to CSV
ID acgppnopbibdaenembdhjpkmdigmmgkk
Offizielle URL https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk
Beschreibung Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Dateigröße 8.21 KB
Installationsanzahl 982
Aktuelle Version 1.0.0
Letztes Update 2018-07-14
Veröffentlichungsdatum 2018-07-13
Bewertung 2.83/5 Insgesamt 12 Bewertungen
Entwickler Chetan Ganatra
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}