Sort apache server-status

Sort apache server-status

Sort table by cpu in urls like http://localhost/server-status*

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sort apache server-status",
  "short_name": "Sort server-status",
  "description": "Sort table by cpu in urls like http://localhost/server-status*",
  "version": "1.5.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/server-status*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "cookies.min.js",
        "jquery.tablesorter.min.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.gif"
  ]
}