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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Calendar Export GCal to CSV

ดาวน์โหลดไฟล์ส่วนขยาย Google Calendar Export GCal to CSV ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Calendar Export GCal to CSV Google Calendar Export GCal to CSV
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"
    ]
}