Warframe (Build to Market)

Warframe (Build to Market)

Clicking on a Mod card in overframe.gg opens a new tab will be opened to the warframe.market page of sellers for that card.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Warframe (Build to Market)",
  "version": "1.0.0",
  "description": "Clicking on a Mod card in overframe.gg opens a new tab will be opened to the warframe.market page of sellers for that card.",
  "icons": {
    "48": "logo.png",
    "96": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.overframe.gg/build/*"
      ],
      "exclude_matches": [
        "*://*.overframe.gg/build/new/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ]
}