Jisho To Anki

Adds buttons to Jisho.org that let you quickly add words into your Anki decks

What is Jisho To Anki?

Jisho To Anki is a Chrome extension developed by ltsquigs, and its main feature is "Adds buttons to Jisho.org that let you quickly add words into your Anki decks".

Extension Screenshots

screenshot

Download Jisho To Anki Extension CRX File

Download Jisho To Anki extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A tool that makes it easy to quickly add words from Jisho.org into your Anki decks                    

Extension Basic Information

Name Jisho To Anki Jisho To Anki
ID hffkcepgnkcinfdpnjlgcabfbbjikcgn
Official URL https://chromewebstore.google.com/detail/jisho-to-anki/hffkcepgnkcinfdpnjlgcabfbbjikcgn
Description Adds buttons to Jisho.org that let you quickly add words into your Anki decks
File Size 12.49 MB
Installation Count 73
Current Version 1.0
Last Updated 2022-07-02
Publish Date 2022-07-02
Rating 1.00/5 Total 1 Ratings
Developer ltsquigs
Email [email protected]
Payment Type free
Extension Website https://github.com/LtSquigs/jisho-to-anki
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jisho To Anki",
    "description": "Adds buttons to Jisho.org that let you quickly add words into your Anki decks",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jisho.org\/search\/*"
            ],
            "js": [
                "jisho-to-anki.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "jmdict-slim",
                "sentences"
            ],
            "matches": [
                "https:\/\/jisho.org\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/localhost\/*"
    ]
}