Highlight to Google Calendar

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

O que é Highlight to Google Calendar?

Highlight to Google Calendar é uma extensão do Chrome desenvolvida por bazeblackwood, e sua principal característica é "Highlight text and open popup to automatically add events to google calendar.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlight to Google Calendar

Baixe arquivos de extensão Highlight to Google Calendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
URL Oficial https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Descrição Highlight text and open popup to automatically add events to google calendar.
Tamanho do Arquivo 295 KB
Contagem de Instalações 616
Versão Atual 1.0
Última Atualização 2018-06-03
Data de Publicação 2018-06-02
Classificação 3.86/5 Total de 7 Avaliações
Desenvolvedor bazeblackwood
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://blackwood.io
URL da Página de Ajuda https://github.com/blackwood/highlight-to-google-calendar/issues
Idiomas Suportados 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"
    }
}