WaniKani Notifier

Simple Notifier and Launcher for WaniKani Reviews and Lessons. Works with API v2

WaniKani Notifier क्या है?

WaniKani Notifier BleckJeck द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple Notifier and Launcher for WaniKani Reviews and Lessons. Works with API v2"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WaniKani Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Notifies you when your reviews are due. There's not much else to it.
Made mostly for fun, works with the WaniKani API v2.

Features:
- A badge shows how many reviews are due (you can tick a box in the settings page to get politely reminded of your lessons as well).
- Click on the extension to open a pop-up with links to your lessons and reviews.

NEW in version 2.0.1
- Reworked to be compliant with Chrome extensions manifest V3. 
- Moved from timers to alarms, which limits API calls to one call per minute. 
- Added support for vacation mode in the settings (hide your reviews count while on vacation).

This update was made necessary by the new Google policy for Chrome extensions (more info here if you're interested: https://developer.chrome.com/blog/mv2-transition/).

The extension is now MV3-compliant, which it's definitely a good thing as it means is won't be removed from the store, but it also forced some less welcome design changes, especially the one around timers. In short, this means the extension can only refresh once every minute, which is fine most of the time but can be somewhat annoying while you're in the middle of doing reviews.

I also finally got around to add support for vacation mode, which will hide your review count and stop making API calls while you're taking a break from WaniKani. Bear in mind this is completely independent from the vacation settings on WK itself, so remember to update your options in both places!                    

एक्सटेंशन की मूल जानकारी

नाम WaniKani Notifier WaniKani Notifier
ID heelibmlhnhijgkloghdgpfgobhjemem
आधिकारिक URL https://chromewebstore.google.com/detail/wanikani-notifier/heelibmlhnhijgkloghdgpfgobhjemem
विवरण Simple Notifier and Launcher for WaniKani Reviews and Lessons. Works with API v2
फ़ाइल का आकार 93.92 KB
स्थापना संख्या 372
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2023-08-28
प्रकाशन तिथि 2020-09-06
रेटिंग 4.63/5 कुल 8 रेटिंग्स
डेवलपर BleckJeck
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/BleckJeck/Yet_Another_Wanikani_Notifier
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WaniKani Notifier",
    "description": "Simple Notifier and Launcher for WaniKani Reviews and Lessons. Works with API v2",
    "version": "2.0.1",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "alarms"
    ]
}