Genshin Resin

Genshin Resin

Adds a button to view info about original resin on hoyolab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.1.1",
  "name": "Genshin Resin",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://www.hoyolab.com/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "images/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "https://www.hoyolab.com/*"
      ]
    }
  ],
  "homepage_url": "https://github.com/SuperZombi/genshin-resin",
  "minimum_chrome_version": "107.0.5304.87"
}