Google Calendar Export GCal to CSV
Extracts GCal Events and Search Results into a CSV export. Multiple language support.
ما هو Google Calendar Export GCal to CSV؟
Google Calendar Export GCal to CSV هو إضافة Chrome تم تطويرها بواسطة Chetan Ganatra، والميزة الرئيسية لها هي "Extracts GCal Events and Search Results into a CSV export. Multiple language support.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Calendar Export GCal to CSV
قم بتنزيل ملفات الامتداد Google Calendar Export GCal to CSV بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | |
ID | acgppnopbibdaenembdhjpkmdigmmgkk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-calendar-export-gc/acgppnopbibdaenembdhjpkmdigmmgkk |
الوصف | Extracts GCal Events and Search Results into a CSV export. Multiple language support. |
حجم الملف | 8.21 KB |
عدد التثبيتات | 982 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2018-07-14 |
تاريخ النشر | 2018-07-13 |
تقييم | 2.83/5 مجموع تقييمات 12 |
المطور | Chetan Ganatra |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" ] } |