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은(는) sanke93에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |