Examine source code of Super Trello

Inspect and view changes in Super Trello 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",
  "manifest_version": 3,
  "name": "Super Trello",
  "description": "Supercharge your Trello with Super Trello!",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {},
  "side_panel": {
    "default_path": "src/pages/panel/index.html",
    "default_icon": {
      "32": "icon-32.png"
    }
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "cookies",
    "sidePanel"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/index.tsx-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "assets/inject.js-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/pages/content/injected.js",
        "src/modules/db.ts",
        "src/pages/content/style.css",
        "assets/index.tsx.js",
        "assets/inject.js.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "host_permissions": [
    "*://trello.com/*",
    "*://localhost/*",
    "<all_urls>"
  ],
  "version": "1.7.2"
}