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ファイルをダウンロード
WaniKani Notifier Redux拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |