Examine source code of Barcode Scanner Helper

Inspect and view changes in Barcode Scanner Helper 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": "Barcode Scanner Helper",
  "description": "Auto selects search input for repeated barcode scan searching.  Currently supports: Amazon, eBay, Abebooks and Bookfinder.",
  "version": "1.2",
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.com/*",
        "*://www.ebay.com/*",
        "*://www.abebooks.com/*",
        "*://www.bookfinder.com/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "amazon.css"
      ],
      "run_at": "document_end"
    }
  ]
}