Highlight to Google Calendar

Highlight text and open popup to automatically add events to google calendar.

What is Highlight to Google Calendar?

Highlight to Google Calendar is a Chrome extension developed by bazeblackwood, and its main feature is "Highlight text and open popup to automatically add events to google calendar.".

Extension Screenshots

screenshot
screenshot

Download Highlight to Google Calendar Extension CRX File

Download Highlight to Google Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A chrome extension that allows you to turn highlighted text into Google Calendar events. (Google Calendar used to do this automatically when entering events, but no longer 😿)

Simply highlight some text with an event date and time in it, and the result will be in the popup when you click the extension icon when you click the top right. The extension will generate a shorter a title for you, and put the remaining details in the description of the event. Click "Create Event" after a successful parse and it will take you to the event creation dialog in Google Calendar.                    

Extension Basic Information

Name Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
Official URL https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Description Highlight text and open popup to automatically add events to google calendar.
File Size 295 KB
Installation Count 616
Current Version 1.0
Last Updated 2018-06-03
Publish Date 2018-06-02
Rating 3.86/5 Total 7 Ratings
Developer bazeblackwood
Email [email protected]
Payment Type free
Extension Website http://blackwood.io
Help Page URL https://github.com/blackwood/highlight-to-google-calendar/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Google Calendar",
    "description": "Highlight text and open popup to automatically add events to google calendar.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/build\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}