PSN Profiles guide column

PSN Profiles guide column

Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PSN Profiles guide column",
  "description": "Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.",
  "version": "1.3",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://psnprofiles.com/*"
      ],
      "js": [
        "jquery.min.js",
        "difficultyColumn.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "games.json"
      ],
      "matches": [
        "https://psnprofiles.com/*"
      ]
    }
  ]
}