Create Google Calendar Event

Creates an event in your Google calendar based on selected text.

Create Google Calendar Event क्या है?

Create Google Calendar Event Jeff Lyons द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates an event in your Google calendar based on selected text."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Create Google Calendar Event एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Select or highlight text containing a date, time, and event title. (Time and title are optional.) Right click on the selected text and click “Create Google calendar event for ‘….’”. This extension will open the Google calendar new event page filled in with the date, time, and title info that it found. Save the event, making adjustments if desired, or cancel event creation with the “X”.

You can create events from any selectable text in Chrome. 

- EXAMPLES OF SUPPORTED DATE FORMATS -
• November 1st
• November 1
• 2 November
• 2nd of November
• November 15, 2020
• 2001 November 15
• 10/24
• 10/24/2020

When the year is missing, the extension assumes it is the next occurrence of that date, whether it’s this year or next.

- EXAMPLES OF SUPPORTED DATE/TIME FORMATS - 
• 8:00 AM to 4:00 PM on 11/2/2019
• 3:00 on 11/1/2019
• 5pm to 8pm on 6/15
• 3PM on 8/10

If no time is selected, it will assume an all-day event. If AM/PM is missing, it will guess which. If only one time, the start and end time will be the same.

Any text not part of the date/time becomes the event title. If there is no event title, it will just call it “Event”.

- EXAMPLES OF EVENT TITLES -
• "Sushi with wife at 7PM on 11/2". Event title will be “Sushi with wife”
• "Olive Garden with friends on November 1st". Event title will be “Olive Garden with friends”
• "10/24 Kayaking on the Rio Grande". Event title will be “Kayaking on the Rio Grande”

- FEEDBACK -
Please email support at [email protected] with any suggestions of other formats to support. Also, email any other feedback, including selected date/time text you think should work but does not.

Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

एक्सटेंशन की मूल जानकारी

नाम Create Google Calendar Event Create Google Calendar Event
ID hgfcjgkfpcgkpjejigpabfioeghofajm
आधिकारिक URL https://chromewebstore.google.com/detail/create-google-calendar-ev/hgfcjgkfpcgkpjejigpabfioeghofajm
विवरण Creates an event in your Google calendar based on selected text.
फ़ाइल का आकार 39.44 KB
स्थापना संख्या 2,587
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-12-03
प्रकाशन तिथि 2019-11-30
रेटिंग 2.92/5 कुल 12 रेटिंग्स
डेवलपर Jeff Lyons
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Create Google Calendar Event",
    "description": "Creates an event in your Google calendar based on selected text.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "apiKey.js",
            "background.js",
            "dateUtils.js",
            "dateTextProcessor.js",
            "unitTests.js"
        ]
    },
    "icons": {
        "16": "SendToGoogCalIcon.png",
        "48": "SendToGoogCalIcon.png",
        "128": "SendToGoogCalIcon.png"
    },
    "oauth2": {
        "client_id": "798578276973-kkcubuitpb1iaorln224ogtsdgn7j3cm.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events"
        ]
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkzDZYFK0FlWr95D7FlDgQGxJJeKjni2x87zMR3XZ2VKJ\/t1dfJjpMYh8BUK7J0fSdqprbIKQaOE8wrzGurrW3W0MStl8+y63ABVcroU2xpqYpV26xJNkfA+5\/tVbWoc+\/3rWq4G0+7LXH4Bx+FdS+rs4A3FUH+LKBM6hXysp9LGP41RgOKqGo2WSd6CyvUzXpcLYhIozKCTpHCov9GGxzH0rxxSJG1tje6gkAGJrXUkjovrp9batT3RP0u\/pmapltDg73z0F9c0YGDErc3PlqxW44t3O7qvnO+MzCSF6rQffRdldNpBUb0T9FzLN9apKEHlUafIvszbBBZizLA3YuQIDAQAB",
    "permissions": [
        "identity",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}