Ansible Tower - Sytem Tracking fix

Ansible Tower - Sytem Tracking fix

A simple google chrome extension to tidy up the System Tracking page and make it easier to navigate through the different sections…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ansible Tower - Sytem Tracking fix",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery/jquery.js",
        "jquery/jquery.livequery.min.js",
        "tower.js"
      ],
      "css": [
        "tower.css"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}