漢字 stroke order

漢字 stroke order

Simple way to get stroke order of multiple 漢字 at once

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "漢字 stroke order",
  "short_name": "kanji stroke order",
  "description": "Simple way to get stroke order of multiple 漢字 at once",
  "version": "0.9.4",
  "icons": {
    "16": "icons/icon016.png",
    "32": "icons/icon032.png",
    "48": "icons/icon048.png",
    "64": "icons/icon064.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://jisho.org/*"
      ],
      "js": [
        "cs.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "https://jisho.org/"
  ]
}