Highlight to Google Calendar

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

Vad är Highlight to Google Calendar?

Highlight to Google Calendar är en Chrome-tillägg utvecklad av bazeblackwood, och dess huvudfunktion är "Highlight text and open popup to automatically add events to google calendar.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Highlight to Google Calendar-förlängningens CRX-fil

Ladda ner Highlight to Google Calendar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
Officiell webbadress https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
Beskrivning Highlight text and open popup to automatically add events to google calendar.
Filstorlek 295 KB
Antal Installationer 616
Aktuell Version 1.0
Senast Uppdaterad 2018-06-03
Publiceringsdatum 2018-06-02
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare bazeblackwood
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://blackwood.io
Hjälpsida URL https://github.com/blackwood/highlight-to-google-calendar/issues
Stödda Språk 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"
    }
}