WaniKani Notifier Redux
Notifies you when you have more to study on WaniKani! Now with HTTPS support!
WaniKani Notifier Redux là gì?
WaniKani Notifier Redux là một tiện ích mở rộng Chrome được phát triển bởi Matthew Miller, và tính năng chính của nó là "Notifies you when you have more to study on WaniKani! Now with HTTPS support!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WaniKani Notifier Redux
Tải xuống các tệp mở rộng WaniKani Notifier Redux dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WaniKani Notifier Redux |
ID | objmjhmkpipkgollnfnabdneiihdnafj |
URL Chính Thức | https://chromewebstore.google.com/detail/wanikani-notifier-redux/objmjhmkpipkgollnfnabdneiihdnafj |
Mô tả | Notifies you when you have more to study on WaniKani! Now with HTTPS support! |
Kích Thước Tệp | 27.67 KB |
Số Lần Cài Đặt | 204 |
Phiên Bản Hiện Tại | 0.3.2 |
Cập Nhật Lần Cuối | 2014-02-13 |
Ngày Phát Hành | 2014-02-13 |
Đánh Giá | 3.86/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Matthew Miller |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |