WaniKani Notifier Redux
Notifies you when you have more to study on WaniKani! Now with HTTPS support!
WaniKani Notifier Redux란 무엇입니까?
WaniKani Notifier Redux은(는) Matthew Miller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notifies you when you have more to study on WaniKani! Now with HTTPS support!"입니다.
확장 프로그램 스크린샷
WaniKani Notifier Redux 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keep track of how many reviews are ready for you on WaniKani! Features: * Displays the total number of reviews available to study * Optionally displays a desktop notification * Mouse over the extension's icon to see the time of your next review * Click on the extension's icon to access WaniKani.com Note: This extension is a fork of t0asterb0t studios' WaniKani Notifier extension. I modified it to work with WaniKani's recent update to site-wide HTTPS, as well as changes in underling site structure. CHANGELOG: v0.3.2 - The badge showing number of available reviews should update itself according to the chosen refresh period, as well as when reviews are completed v0.3.1 - Tweaked some wording in Options v0.3.0 - Initial Release
확장 프로그램 기본 정보
이름 | WaniKani Notifier Redux |
ID | objmjhmkpipkgollnfnabdneiihdnafj |
공식 URL | https://chromewebstore.google.com/detail/wanikani-notifier-redux/objmjhmkpipkgollnfnabdneiihdnafj |
설명 | Notifies you when you have more to study on WaniKani! Now with HTTPS support! |
파일 크기 | 27.67 KB |
설치 횟수 | 204 |
현재 버전 | 0.3.2 |
최근 업데이트 | 2014-02-13 |
출시 날짜 | 2014-02-13 |
평점 | 3.86/5 총 7 개의 평점 |
개발자 | Matthew Miller |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon_128.png", "default_title": "WaniKani Notifier Redux" }, "content_scripts": [ { "js": [ "review_page.js" ], "matches": [ "https:\/\/www.wanikani.com\/review" ] } ], "default_locale": "en", "description": "__MSG_wanikaninotify_description__", "icons": { "128": "icon_128.png" }, "manifest_version": 2, "name": "__MSG_wanikaninotify_name__", "options_page": "options.html", "permissions": [ "alarms", "storage", "notifications", "https:\/\/www.wanikani.com\/api\/*" ], "version": "0.3.2", "web_accessible_resources": [ "icon_128.png" ] } |