Highlight to Google Calendar
Highlight text and open popup to automatically add events to google calendar.
什麼是Highlight to Google Calendar?
Highlight to Google Calendar是由bazeblackwood開發的Chrome擴展程式,該擴展的主要功能是“Highlight text and open popup to automatically add events to google calendar.”。
擴展截圖
下載Highlight to Google Calendar擴展crx文件
下載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 |
官方網址 | 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" } } |