Google Calendar Export GCal to CSV
Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Vad är Google Calendar Export GCal to CSV?
Google Calendar Export GCal to CSV är en Chrome-tillägg utvecklad av Chetan Ganatra, och dess huvudfunktion är "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".
Tilläggsskärmbilder
Ladda ner Google Calendar Export GCal to CSV-förlängningens CRX-fil
Ladda ner Google Calendar Export GCal to CSV-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | acgppnopbibdaenembdhjpkmdigmmgkk |
Officiell webbadress | https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk |
Beskrivning | Extracts GCal Events and Search Results into a CSV export. Multiple language support. |
Filstorlek | 8.21 KB |
Antal Installationer | 982 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2018-07-14 |
Publiceringsdatum | 2018-07-13 |
Betyg | 2.83/5 Totalt 12 Betyg |
Utvecklare | Chetan Ganatra |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |