Highlight to Google Calendar

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

Co je Highlight to Google Calendar?

Highlight to Google Calendar je rozšíření Chrome vyvinuté bazeblackwood, a jeho hlavní funkcí je „Highlight text and open popup to automatically add events to google calendar.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Highlight to Google Calendar

Stáhněte si soubory rozšíření Highlight to Google Calendar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
Oficiální URL https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Popis Highlight text and open popup to automatically add events to google calendar.
Velikost souboru 295 KB
Počet instalací 616
Aktuální Verze 1.0
Poslední Aktualizace 2018-06-03
Datum Vydání 2018-06-02
Hodnocení 3.86/5 Celkem 7 Hodnocení
Vývojář bazeblackwood
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://blackwood.io
URL Stránky Nápovědy https://github.com/blackwood/highlight-to-google-calendar/issues
Podporované Jazyky 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"
    }
}