GeForce Now Lookup

GeForce Now Lookup

Lookup the compatibility of any game on Steam within the extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GeForce Now Lookup",
  "version": "1.1.0",
  "description": "Lookup the compatibility of any game on Steam within the extension",
  "manifest_version": 3,
  "icons": {
    "128": "icon_128-active.png"
  },
  "action": {
    "default_icon": "icon_128.png",
    "default_title": "GeForce Now Lookup",
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://steamcommunity.com/*",
    "https://store.steampowered.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://store.steampowered.com/*",
        "https://steamcommunity.com/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}