Examine source code of eBay Search Scraper

Inspect and view changes in eBay Search Scraper 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
{
  "manifest_version": 2,
  "name": "eBay Search Scraper",
  "version": "1.0",
  "description": "Scrape product data from eBay search results and display it in a table on a new tab",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.ebay.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "backgroundScript.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Scrape eBay search results"
  },
  "icons": {
    "48": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e3509b36-b8b8-4cb3-9458-ecb054f3940e}"
    }
  }
}