Examine source code of Canopy GUI Enhancer

Inspect and view changes in Canopy GUI 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": "Canopy GUI Enhancer",
  "short_name": "CGE",
  "description": "This extension enhance the standard CambiumNetworks Canopy Web GUI",
  "version": "1.8.5resigned1",
  "version_name": "1.8.4",
  "author": "Mattia Basone <mattia.basone@gmail.com>",
  "browser_action": {
    "default_icon": "icon_128.png",
    "default_popup": "html/popup.html",
    "default_title": "Canopy GUI Enhancer - Edit settings"
  },
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "notifications",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_loader.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "utils.js",
    "CanopyEnhancer.js",
    "lib/Chart.min.js",
    "css/bootstrap-mini.css",
    "css/gui.css",
    "css/style.css"
  ],
  "background": {
    "scripts": [
      "update_checker.js"
    ],
    "persistent": false
  },
  "applications": {
    "gecko": {
      "id": "{9005c853-c8cc-4d20-b7cc-ff524bcd020d}"
    }
  }
}