Jisho To Anki

Jisho To Anki

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

Merlin
Additional files are visible only to premium users

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/*"
  ]
}