WaniKani Notifier

Notifies you when you have more to study on WaniKani!

WaniKani Notifier क्या है?

WaniKani Notifier t0asterb0t studios द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifies you when you have more to study on WaniKani!"।

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

screenshot

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

crx प्रारूप में WaniKani Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}