WaniKani Notifier
Notifies you when you have more to study on WaniKani!
WaniKani Notifier란 무엇입니까?
WaniKani Notifier은(는) t0asterb0t studios에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notifies you when you have more to study on WaniKani!"입니다.
확장 프로그램 스크린샷
WaniKani Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Want to keep track of when you need to review on WaniKani without keeping a tab open all the tab? Now you can! Latest version (0.3.0): * Updated to support API version 1.4 * Badge updates as review session progresses * Fixed Chrome notifications Features: * Updates a badge on the extension's icon when you have more to study * Optionally displays a desktop notification as well * Mouse over the extension's icon to see the time of your next review * Clicking on the extension's icon redirects to WaniKani.com * Settings sync with Chrome Sync, so all of your synced Chrome browsers will be set up automatically * Memory efficient: Uses event pages to unload the extension when it's not busy
확장 프로그램 기본 정보
이름 | WaniKani Notifier |
ID | oolkffcgenmpgkfknfjfkhgbdnkobnga |
공식 URL | https://chromewebstore.google.com/detail/wanikani-notifier/oolkffcgenmpgkfknfjfkhgbdnkobnga |
설명 | Notifies you when you have more to study on WaniKani! |
파일 크기 | 25.59 KB |
설치 횟수 | 70 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2015-12-20 |
출시 날짜 | 2015-12-19 |
평점 | 4.00/5 총 4 개의 평점 |
개발자 | t0asterb0t studios |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_wanikaninotify_name__", "version": "0.3.0", "manifest_version": 2, "description": "__MSG_wanikaninotify_description__", "default_locale": "en", "icons": { "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/www.wanikani.com\/review\/session" ], "js": [ "review_page.js" ] } ], "permissions": [ "alarms", "storage", "notifications", "https:\/\/www.wanikani.com\/api\/*" ], "browser_action": { "default_title": "WaniKani Notifier", "default_icon": "icon_128.png" }, "web_accessible_resources": [ "icon_128.png" ] } |