ETA Patcher

ETA Patcher

An extension that fixes a number of issues with ETA, allowing chrome to be used instead of IE.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ETA Patcher",
  "version": "6.1.9",
  "description": "An extension that fixes a number of issues with ETA, allowing chrome to be used instead of IE.",
  "permissions": [
    "http://eta.erau.edu/*",
    "http://etaqc.erau.edu/*",
    "https://apps2.talonsystems.com/*"
  ],
  "web_accessible_resources": [
    "script.js",
    "topBarMenuFlight.gif",
    "popScript.js",
    "jquery-ui.js",
    "jquery-3.5.1.min.js"
  ],
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://eta.erau.edu/*",
        "*://etaqc.erau.edu/*",
        "*://apps2.talonsystems.com/*"
      ],
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "css": [
        "custom.css"
      ],
      "run_at": "document_end"
    }
  ]
}