Highlight to Google Calendar
Highlight text and open popup to automatically add events to google calendar.
Highlight to Google Calendar là gì?
Highlight to Google Calendar là một tiện ích mở rộng Chrome được phát triển bởi bazeblackwood, và tính năng chính của nó là "Highlight text and open popup to automatically add events to google calendar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Highlight to Google Calendar
Tải xuống các tệp mở rộng Highlight to Google Calendar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | eehlbikncmbbmebknibmlajbmhjiepbh |
URL Chính Thức | https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh |
Mô tả | Highlight text and open popup to automatically add events to google calendar. |
Kích Thước Tệp | 295 KB |
Số Lần Cài Đặt | 616 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-06-03 |
Ngày Phát Hành | 2018-06-02 |
Đánh Giá | 3.86/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | bazeblackwood |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://blackwood.io |
URL Trang Trợ Giúp | https://github.com/blackwood/highlight-to-google-calendar/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |