Highlight to Google Calendar

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

Cos'è Highlight to Google Calendar?

Highlight to Google Calendar è un'estensione di Chrome sviluppata da bazeblackwood, e la sua funzione principale è "Highlight text and open popup to automatically add events to google calendar.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Highlight to Google Calendar

Scarica i file di estensione Highlight to Google Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
URL Ufficiale https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Descrizione Highlight text and open popup to automatically add events to google calendar.
Dimensione del File 295 KB
Conteggio Installazioni 616
Versione Corrente 1.0
Ultimo Aggiornamento 2018-06-03
Data di Pubblicazione 2018-06-02
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore bazeblackwood
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://blackwood.io
URL della Pagina di Aiuto https://github.com/blackwood/highlight-to-google-calendar/issues
Lingue Supportate 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"
    }
}