Auctionoton: Auction House Prices for Wowhead

Auctionoton: Auction House Prices for Wowhead

Display current Auction House price data for items on wowhead.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auctionoton: Auction House Prices for Wowhead",
  "version": "5.1.0",
  "description": "Display current Auction House price data for items on wowhead.com",
  "content_scripts": [
    {
      "matches": [
        "https://tbc.wowhead.com/*",
        "https://wotlk.wowhead.com/*",
        "https://wowhead.com/wotlk/*",
        "https://www.wowhead.com/wotlk/*",
        "https://cata.wowhead.com/*",
        "https://wowhead.com/cata/*",
        "https://www.wowhead.com/cata/*",
        "https://wowhead.com/classic/*",
        "https://www.wowhead.com/classic/*"
      ],
      "js": [
        "index.js"
      ]
    },
    {
      "matches": [
        "https://tbc.wowhead.com/*",
        "https://wotlk.wowhead.com/*",
        "https://wowhead.com/wotlk/*",
        "https://www.wowhead.com/wotlk/*",
        "https://cata.wowhead.com/*",
        "https://wowhead.com/cata/*",
        "https://www.wowhead.com/cata/*",
        "https://wowhead.com/classic/*",
        "https://www.wowhead.com/classic/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.js",
        "form.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "static/icon.png",
    "default_popup": "form.html",
    "default_title": "Auctionoton: Auction House Prices for Wowhead"
  },
  "options_ui": {
    "page": "form.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "static/icon-16.png",
    "32": "static/icon-32.png",
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "permissions": [
    "storage",
    "https://*.ngrok.io/*",
    "https://5d9b-82-168-31-31.ngrok.io/*",
    "https://auctionoton-edge-api-sandervspl.vercel.app/api/*",
    "https://auctionoton-edge-api.vercel.app/api/*",
    "https://auctionoton-api-valor.vercel.app/api/*",
    "https://auctionoton-api.vercel.app/api/*",
    "https://auctionoton-api.sandervspl.dev/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}