Examine source code of BIG-IP Admin UI Enhancer

Inspect and view changes in BIG-IP Admin UI Enhancer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "BIG-IP Admin UI Enhancer",
  "version": "1.0.2",
  "description": "Enhances the BIG-IP administrative GUI and keeps sessions alive.",
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*xui/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{23f3681e-5353-4afd-8d3d-cede7a4c4f21}"
    }
  }
}