WaniKani Notifier

Notifies you when you have more to study on WaniKani!

什麼是WaniKani Notifier?

WaniKani Notifier是由t0asterb0t studios開發的Chrome擴展程式,該擴展的主要功能是“Notifies you when you have more to study on WaniKani!”。

擴展截圖

screenshot

下載WaniKani Notifier擴展crx文件

下載WaniKani Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}