GTA V Item Stats

GTA V Item Stats

View GTA V item stat numbers on the SocialClub website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GTA V Item Stats",
  "version": "2",
  "description": "View GTA V item stat numbers on the SocialClub website",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://socialclub.rockstargames.com/games/gtav/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "js": [
        "scripts/jquery-3.3.1.min.js",
        "scripts/stupidtable.min.js",
        "scripts/extension.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2
}