Highlight to Google Calendar

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

¿Qué es Highlight to Google Calendar?

Highlight to Google Calendar es una extensión de Chrome desarrollada por bazeblackwood, y su función principal es "Highlight text and open popup to automatically add events to google calendar.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Highlight to Google Calendar

Descarga archivos de extensión Highlight to Google Calendar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
URL Oficial https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Descripción Highlight text and open popup to automatically add events to google calendar.
Tamaño del Archivo 295 KB
Cantidad de Instalaciones 616
Versión Actual 1.0
Última Actualización 2018-06-03
Fecha de Publicación 2018-06-02
Calificación 3.86/5 Total de 7 Calificaciones
Desarrollador bazeblackwood
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://blackwood.io
URL de la Página de Ayuda https://github.com/blackwood/highlight-to-google-calendar/issues
Idiomas Soportados 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"
    }
}