Torn HiLo Assistant

Torn HiLo Assistant

Torn High-Low Game Assistant

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 HiLo Assistant",
  "description": "Torn High-Low Game Assistant",
  "version": "0.0.2",
  "author": "Nepherius",
  "homepage_url": "http://nepherius.xyz",
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "options.html",
    "images/*"
  ],
  "permissions": [
    "identity",
    "activeTab",
    "storage",
    "https://www.torn.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.torn.com/*"
      ],
      "css": [
        "css/ohsnap.css",
        "css/style.css"
      ],
      "js": [
        "/js/plugins/jquery-3.1.0.min.js",
        "/js/plugins/ohsnap.min.js",
        "js/plugins/jquery-ui.min.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ]
}