Card Image for Yu-Gi-Oh! Card Wiki

Card Image for Yu-Gi-Oh! Card Wiki

Show card images on Yu-Gi-Oh! Card Wiki.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "55",
  "name": "__MSG_extName__",
  "version": "0.3.0",
  "default_locale": "ja",
  "description": "__MSG_extDescription__",
  "author": "Yuichi Tanikawa",
  "homepage_url": "https://github.com/uu1t/card-image-for-yugioh-card-wiki",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://yugioh-wiki.net/?*",
        "http://yugioh-wiki.net/index.php?*",
        "http://yugioh-wiki.net/pukiwiki.php?*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "permissions": [
    "https://yugioh.fandom.com/"
  ]
}