Examine source code of Next Step for Trello

Inspect and view changes in Next Step for 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",
  "action": {
    "default_icon": "icon_128.png",
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.ts.9eab5a64.b5c70bb4.js"
      ],
      "css": [
        "src/content-script/next-step-for-trello.css"
      ],
      "matches": [
        "*://trello.com/*",
        "*://*.facebook.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://trello.com/*",
    "https://*.facebook.com/*"
  ],
  "version": "1.23.0",
  "manifest_version": 3,
  "name": "Next Step for Trello",
  "description": "Check tasks directly from your Trello boards",
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "icons": {
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.facebook.com/*",
        "https://trello.com/*"
      ],
      "resources": [
        "src/assets/*",
        "src/content-script/next-step-for-trello.css"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://trello.com/*"
      ],
      "resources": [
        "assets/index.ts.9eab5a64.js"
      ],
      "use_dynamic_url": true
    }
  ]
}