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 |
官方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" } } |