ProtonDB for Steam

ProtonDB for Steam

Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.6.3",
  "name": "ProtonDB for Steam",
  "description": "Adds the ProtonDB rating to games in the Steam store so you get an idea of how it will run before you buy it!",
  "host_permissions": [
    "https://www.protondb.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "/icons/proton_16.png",
    "32": "/icons/proton_32.png",
    "48": "/icons/proton_48.png",
    "128": "/icons/proton_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://store.steampowered.com/app/*"
      ],
      "js": [
        "js/steamStore.js"
      ]
    },
    {
      "matches": [
        "https://store.steampowered.com/search*"
      ],
      "js": [
        "js/steamSearch.js"
      ]
    },
    {
      "matches": [
        "https://store.steampowered.com/*"
      ],
      "js": [
        "js/steamGeneral.js"
      ],
      "css": [
        "css/protondbCard.css",
        "css/variables.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{09d1226f-0dd0-4ad7-8a0f-cca316ea271e}",
      "strict_min_version": "101.0"
    }
  }
}