Add to gCal

Parses text and adds an event to a user's Google Calendar.

Add to gCalคืออะไร?

Add to gCal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Barkachi และคุณลักษณะหลักของมันคือ "Parses text and adds an event to a user's Google Calendar."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to gCal

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

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

                        🔃 Remember to refresh your page or restart Chrome after installing.

📅 Lets you highlight an event like 'call with the team tomorrow at 3pm on Zoom' and with the click of a button, add the parsed event to any of your Google Calendars. It'll recognize that the event name is 'call with the team,' the time is 7/3/2020 (the next day) at 3pm, and the location is Zoom.
📅 Especially useful for emails that don't include an 'Add to calendar' button.

👆 In order to use Add to gCal, right-click on the extension icon (the blue calendar) after downloading, click "Options," connect your Google Calendar, and finally grant permissions.

⌨ Shortcut: after highlighting an event, press and hold Ctrl+Shift+F on Windows, ChromeOS, and Linux or Command+Shift+F on Mac to open the event menu instantly.

✅ Made the extension because the alternatives that I've tried on the web store are non-functional or don't handle location well.

✅ Note that Add to gCal will only ever add an event that you deliberately specify to a calendar that you deliberately specify. Furthermore, the extension does not store any personally identifying information, event information, or account information.

👩‍💻 Developers: The serverless API (AWS Lambda) that this extension communicates with has no database attached to it in the first place which ensures that no information is stored. No logging of event information takes place on the server either.

🔏 To clarify all of this, the extension's privacy policy and terms of service can be found at https://addtogcal.herokuapp.com/privacy-policy.                    

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

ชื่อ Add to gCal Add to gCal
ID efgddfkmmgfdgenhapgjkljogcalfhgd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/add-to-gcal/efgddfkmmgfdgenhapgjkljogcalfhgd
คำอธิบาย Parses text and adds an event to a user's Google Calendar.
ขนาดไฟล์ 52.94 KB
จำนวนการติดตั้ง 575
เวอร์ชันปัจจุบัน 3.7.6
อัปเดตครั้งล่าสุด 2020-08-26
วันที่เผยแพร่ 2020-07-04
คะแนน 3.40/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Chris Barkachi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add to gCal",
    "version": "3.7.6",
    "description": "Parses text and adds an event to a user's Google Calendar.",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Add event",
        "default_popup": "index.html",
        "default_icon": "calendar-icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "calendar-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "oauth2": {
        "client_id": "522971550267-3c7arkglkdqd634uero2099obf4f5v50.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.readonly",
            "https:\/\/www.googleapis.com\/auth\/calendar.events"
        ]
    },
    "permissions": [
        "identity"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArrdZ5eF35zTRwIiWfoowMWUqDf\/247BWn4CqxhVERCT9r5Y76UUJPAieJiWQUIAwFX+u90pOCPB1pAIcpe2aB1o\/BUlKGJpY0DAHRsJutE3WfbEvhNrnLLyszPPbVbg0Phi4Dp8GJjuUVtmbBde6eDq7MZISTzzDxicdDGPAOpWP+f0c1fD5dZ76HsyI+50N8kBN\/f21cBoCeL281YZ5CwimPq8Fg0bY7dlR8AY7Qz0Jha6S3NEDRxGAxYvxvVjlUIFr0YseKVOn1ccIky9Xk7quy9RQJrgHaYqdp0Wcex4d24jYsW5s1GiWpok20FaUJZZjc9RzJR1rbP0\/qECXAwIDAQAB"
}