Highlight to Google Calendar
Highlight text and open popup to automatically add events to google calendar.
Τι είναι το Highlight to Google Calendar;
Το Highlight to Google Calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bazeblackwood, και η κύρια λειτουργία του είναι "Highlight text and open popup to automatically add events to google calendar.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Highlight to Google Calendar
Λήψη αρχείων επέκτασης Highlight to Google Calendar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | eehlbikncmbbmebknibmlajbmhjiepbh |
Επίσημο URL | https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh |
Περιγραφή | Highlight text and open popup to automatically add events to google calendar. |
Μέγεθος Αρχείου | 295 KB |
Αριθμός Εγκαταστάσεων | 616 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2018-06-03 |
Ημερομηνία Δημοσίευσης | 2018-06-02 |
Αξιολόγηση | 3.86/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | bazeblackwood |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://blackwood.io |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/blackwood/highlight-to-google-calendar/issues |
Υποστηριζόμενες Γλώσσες | 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" } } |