j-play

j-play

Interact with a Jeopardy! game on the J-Archive website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "j-play",
  "description": "Interact with a Jeopardy! game on the J-Archive website.",
  "version": "1.4.0",
  "icons": {
    "128": "images/128x128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "stylecontent.css"
      ],
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://*.j-archive.com/showgame*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://*.j-archive.com/showgame*"
  ]
}