Jisho-OJAD

Jisho-OJAD

Add pitch accent display to Jisho

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-OJAD",
  "description": "Add pitch accent display to Jisho",
  "version": "1.10",
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://jisho.org/search/*",
        "*://www.jisho.org/search/*",
        "*://jisho.org/word/*",
        "*://www.jisho.org/word/*"
      ],
      "js": [
        "jquery.js",
        "parse.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "host_permissions": [
    "https://www.gavo.t.u-tokyo.ac.jp/"
  ]
}