Store Scraper

Store Scraper

Scrapes and displays public information from Ebay

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Store Scraper",
  "description": "Scrapes and displays public information from Ebay",
  "version": "2.2.1",
  "page_action": {
    "default_popup": "index.html",
    "default_icon": "Store Scraper.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "identity",
    "identity.email",
    "downloads",
    "tabs",
    "https://www.ebay.com/*",
    "http://www.ebay.com/*"
  ],
  "icons": {
    "128": "Store Scraper.png"
  }
}