Highlight to Google Calendar

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

Was ist Highlight to Google Calendar?

Highlight to Google Calendar ist eine Chrome-Erweiterung, die von bazeblackwood entwickelt wurde, und ihr Hauptmerkmal ist "Highlight text and open popup to automatically add events to google calendar.".

Erweiterungsscreenshots

screenshot
screenshot

Highlight to Google Calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Highlight to Google Calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
Offizielle URL https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Beschreibung Highlight text and open popup to automatically add events to google calendar.
Dateigröße 295 KB
Installationsanzahl 616
Aktuelle Version 1.0
Letztes Update 2018-06-03
Veröffentlichungsdatum 2018-06-02
Bewertung 3.86/5 Insgesamt 7 Bewertungen
Entwickler bazeblackwood
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://blackwood.io
Hilfeseite URL https://github.com/blackwood/highlight-to-google-calendar/issues
Unterstützte Sprachen 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"
    }
}