Google Calendar Export GCal to CSV

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

¿Qué es Google Calendar Export GCal to CSV?

Google Calendar Export GCal to CSV es una extensión de Chrome desarrollada por Chetan Ganatra, y su función principal es "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Calendar Export GCal to CSV

Descarga archivos de extensión Google Calendar Export GCal to CSV en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Calendar Export GCal to CSV Google Calendar Export GCal to CSV
ID acgppnopbibdaenembdhjpkmdigmmgkk
URL Oficial https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk
Descripción Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Tamaño del Archivo 8.21 KB
Cantidad de Instalaciones 982
Versión Actual 1.0.0
Última Actualización 2018-07-14
Fecha de Publicación 2018-07-13
Calificación 2.83/5 Total de 12 Calificaciones
Desarrollador Chetan Ganatra
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}