Google Calendar Export GCal to CSV
Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Wat is Google Calendar Export GCal to CSV?
Google Calendar Export GCal to CSV is een Chrome-extensie ontwikkeld door Chetan Ganatra, en de belangrijkste functie is "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Calendar Export GCal to CSV
Download Google Calendar Export GCal to CSV-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | acgppnopbibdaenembdhjpkmdigmmgkk |
Officiële URL | https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk |
Beschrijving | Extracts GCal Events and Search Results into a CSV export. Multiple language support. |
Bestandsgrootte | 8.21 KB |
Aantal Installaties | 982 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2018-07-14 |
Publicatiedatum | 2018-07-13 |
Beoordeling | 2.83/5 Totaal 12 Beoordelingen |
Ontwikkelaar | Chetan Ganatra |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |