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!”。

擴展截圖

screenshot

下載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 WaniKani Notifier Redux
ID objmjhmkpipkgollnfnabdneiihdnafj
官方網址 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"
    ]
}