WaniKani Notifier Redux

Notifies you when you have more to study on WaniKani! Now with HTTPS support!

O que é WaniKani Notifier Redux?

WaniKani Notifier Redux é uma extensão do Chrome desenvolvida por Matthew Miller, e sua principal característica é "Notifies you when you have more to study on WaniKani! Now with HTTPS support!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WaniKani Notifier Redux

Baixe arquivos de extensão WaniKani Notifier Redux no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome WaniKani Notifier Redux WaniKani Notifier Redux
ID objmjhmkpipkgollnfnabdneiihdnafj
URL Oficial https://chromewebstore.google.com/detail/wanikani-notifier-redux/objmjhmkpipkgollnfnabdneiihdnafj
Descrição Notifies you when you have more to study on WaniKani! Now with HTTPS support!
Tamanho do Arquivo 27.67 KB
Contagem de Instalações 204
Versão Atual 0.3.2
Última Atualização 2014-02-13
Data de Publicação 2014-02-13
Classificação 3.86/5 Total de 7 Avaliações
Desenvolvedor Matthew Miller
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}