Highlight to Google Calendar
Highlight text and open popup to automatically add events to google calendar.
Wat is Highlight to Google Calendar?
Highlight to Google Calendar is een Chrome-extensie ontwikkeld door bazeblackwood, en de belangrijkste functie is "Highlight text and open popup to automatically add events to google calendar.".
Extensie Screenshots
Download het CRX-bestand van de extensie Highlight to Google Calendar
Download Highlight to Google Calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | eehlbikncmbbmebknibmlajbmhjiepbh |
Officiële URL | https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh |
Beschrijving | Highlight text and open popup to automatically add events to google calendar. |
Bestandsgrootte | 295 KB |
Aantal Installaties | 616 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-06-03 |
Publicatiedatum | 2018-06-02 |
Beoordeling | 3.86/5 Totaal 7 Beoordelingen |
Ontwikkelaar | bazeblackwood |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://blackwood.io |
Help Pagina-URL | https://github.com/blackwood/highlight-to-google-calendar/issues |
Ondersteunde Talen | 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" } } |