Jisho To Anki

Jisho To Anki

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "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"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "jmdict-slim",
    "sentences"
  ],
  "permissions": [
    "storage",
    "*://localhost/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{80f58a54-7f39-4b48-9730-014fd057a09d}"
    }
  }
}