Torn TBS Range

Torn TBS Range

Displays estimated stat range in Torn. Uses Rank Trigger method.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Torn TBS Range",
  "description": "Displays estimated stat range in Torn. Uses Rank Trigger method.",
  "version": "1.0.1",
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "https://api.torn.com/user/*",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.torn.com/profiles.php?XID=*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "tbs_range.js"
      ]
    }
  ]
}