Examine source code of Opus Lab Amazon

Inspect and view changes in Opus Lab Amazon 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",
  "description": "Simplify Amazon shipping. Effortlessly manage orders, generate CSV files, and streamline label production. Optimize your workflow.",
  "version": "1.0.1",
  "manifest_version": 3,
  "name": "Opus Lab Amazon",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://sellercentral.amazon.com/orders-v3*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "tailwind_build.css",
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "tailwind.css",
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ]
}