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