Google Calendar Export GCal to CSV

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

O que é Google Calendar Export GCal to CSV?

Google Calendar Export GCal to CSV é uma extensão do Chrome desenvolvida por Chetan Ganatra, e sua principal característica é "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Calendar Export GCal to CSV

Baixe arquivos de extensão Google Calendar Export GCal to CSV no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Tamanho do Arquivo 8.21 KB
Contagem de Instalações 982
Versão Atual 1.0.0
Última Atualização 2018-07-14
Data de Publicação 2018-07-13
Classificação 2.83/5 Total de 12 Avaliações
Desenvolvedor Chetan Ganatra
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}