Google Calendar Export GCal to CSV
Extracts GCal Events and Search Results into a CSV export. Multiple language support.
Co je Google Calendar Export GCal to CSV?
Google Calendar Export GCal to CSV je rozšíření Chrome vyvinuté Chetan Ganatra, a jeho hlavní funkcí je „Extracts GCal Events and Search Results into a CSV export. Multiple language support.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Google Calendar Export GCal to CSV
Stáhněte si soubory rozšíření Google Calendar Export GCal to CSV ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | acgppnopbibdaenembdhjpkmdigmmgkk |
Oficiální URL | https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk |
Popis | Extracts GCal Events and Search Results into a CSV export. Multiple language support. |
Velikost souboru | 8.21 KB |
Počet instalací | 982 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2018-07-14 |
Datum Vydání | 2018-07-13 |
Hodnocení | 2.83/5 Celkem 12 Hodnocení |
Vývojář | Chetan Ganatra |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |