Examine source code of Enhancement Suite for DEGIRO

Inspect and view changes in Enhancement Suite for DEGIRO 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enhancement Suite for DEGIRO",
  "version": "1.1.0",
  "description": "A suite of enhancements for the DEGIRO webtrader.",
  "icons": {
    "32": "/assets/icons/icon32.png",
    "48": "/assets/icons/icon48.png",
    "72": "/assets/icons/icon72.png",
    "96": "/assets/icons/icon96.png",
    "128": "/assets/icons/icon128.png",
    "144": "/assets/icons/icon144.png",
    "192": "/assets/icons/icon192.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "/background/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Enhancement Suite for DEGIRO",
    "default_icon": "/assets/icons/icon48-round.png",
    "default_popup": "/popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://trader.degiro.nl/*"
      ],
      "all_frames": true,
      "js": [
        "/content/content.js"
      ],
      "css": [
        "/content/styles/themes/dark.css",
        "/content/styles/themes/soft-blue.css",
        "/content/styles/themes/soft-green.css",
        "/content/styles/themes/black-hole.css",
        "/content/styles/themes/high-contrast-black.css",
        "/content/styles/themes/high-contrast-white.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "/content/styles/theme.css"
  ],
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://trader.degiro.nl/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}