TornAssist

TornAssist

Torn Assist is a tool for Torn (torn.com). It is designed to facilitate and enhance your torn gaming experience by facilitating the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.4",
  "name": "TornAssist",
  "icons": {
    "16": "resources/images/logo_16.png",
    "32": "resources/images/logo_32.png",
    "48": "resources/images/logo_48.png",
    "64": "resources/images/logo_64.png",
    "128": "resources/images/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.torn.com/trade*",
        "*://torn.com/trade*"
      ],
      "css": [
        "resources/ta.css"
      ],
      "js": [
        "resources/jquery-3.6.0.js",
        "resources/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://www.torn.com/*",
    "*://tornassist.app/*"
  ]
}