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 |
| Eメール | [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"
}
} | |