Ebay Filter And Sort Results

Ebay Filter And Sort Results

Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and/or filter listings with items

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Ebay Filter And Sort Results",
  "description": "Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and/or filter listings with items",
  "version": "1.82",
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "page_action": {
    "default_icon": "tab-icon.png",
    "default_title": "Ebay Filter And Sort Results"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.ebay.com/*",
        "*://*.ebay.ca/*",
        "*://*.ebay.co.uk/*",
        "*://*.ebay.com.au/*",
        "*://*.ebay.in/*",
        "*://*.ebay.de/*",
        "*://*.ebay.ar/*",
        "*://*.ebay.fr/*",
        "*://*.ebay.it/*",
        "*://*.ebay.nl/*",
        "*://*.ebay.es/*",
        "*://*.ebay.ch/*",
        "*://*.ebay.ie/*",
        "*://*.ebay.ph/*",
        "*://*.ebay.pl/*",
        "*://*.ebay.be/*",
        "*://*.ebay.com.hk/*",
        "*://*.ebay.com.my/*",
        "*://*.ebay.com.sg/*"
      ],
      "js": [
        "filter.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}