Seelie

Seelie

Add new features to the Official Genshin Impact Map!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Seelie",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.5",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_title": "Seelie",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "injected.js",
    "langEn.js",
    "langPt.js",
    "style.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://webstatic.mihoyo.com/*",
        "https://webstatic-sea.mihoyo.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "script.js"
      ],
      "all_frames": true
    }
  ]
}