Bookmark Reminder
An extension that allows you to add a page as an event in Google Calendar or save as an .ics file, acting as a reminder
Bookmark Reminderคืออะไร?
Bookmark Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sanke93 และคุณลักษณะหลักของมันคือ "An extension that allows you to add a page as an event in Google Calendar or save as an .ics file, acting as a reminder"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Reminder
ดาวน์โหลดไฟล์ส่วนขยาย Bookmark Reminder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
What's new in version 0.3 -Option to download an .ics file to add it to your Outlook/iCalendar (Can be changed through the extension's options) -Adds the URL as the location and the Title of the webpage as a title of the reminder ------------------- Had a time when you thought of coming back to a certain page at some point in future by bookmarking it and then forget it? This extension allows you to quickly add the URL as a reminder to your Google Calendar (Google Account required) or download as an .ics file to add it to iCal or Outlook. Clicking the icon on any page will open up a popup allowing you to save your event to your calendar! Please email me at [email protected] for any bugs/feature requests or you can create an issue on Github! You are also welcome to fix existing bugs/add new features and submit pull requests to the repository to improve this extension https://github.com/sanke93/bookmark-reminder This extension uses the HTML5 saveAs() FileSaver implementation taken from: https://github.com/eligrey/FileSaver.js
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bookmark Reminder |
ID | ihngndbfmmfdnoaafjhckgknmhgfnjli |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bookmark-reminder/ihngndbfmmfdnoaafjhckgknmhgfnjli |
คำอธิบาย | An extension that allows you to add a page as an event in Google Calendar or save as an .ics file, acting as a reminder |
ขนาดไฟล์ | 50.92 KB |
จำนวนการติดตั้ง | 369 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2014-05-11 |
วันที่เผยแพร่ | 2014-05-11 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | sanke93 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://sanke93.github.io/bookmark-reminder/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bookmark Reminder", "version": "0.3", "description": "An extension that allows you to add a page as an event in Google Calendar or save as an .ics file, acting as a reminder", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "eventPage.js", "FileSaver.js" ], "persistent": false }, "optional_permissions": [ "tabs" ], "options_page": "options.html", "browser_action": { "default_icon": "icon.png" } } |