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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifies you when you have more to study on WaniKani! Now with HTTPS support!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WaniKani Notifier Redux एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |