Shopify Scraper

Shopify Scraper

Shopify Scraper extracts products from any Shopify store to CSV/Excel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "libs/zepto.min.js",
      "js/common.js",
      "js/background.js",
      "js/background_db.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "https://*.google.com/*",
        "https://*.facebook.com/*"
      ],
      "js": [
        "libs/axios.min.js",
        "js/common.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://unpkg.com ; object-src 'self'",
  "description": "Shopify Scraper extracts products from any Shopify store to CSV/Excel",
  "icons": {
    "16": "icons/icon01.png",
    "48": "icons/icon02.png",
    "128": "icons/icon03.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp+3+lgCnfT0nwHOWkBr8AZ+CZVtEPyt7G7Bibzo1Cr/dBXEXchv7Rf1uTRvoqdlVbscRGw0Hm2UUp8JHA6ZN9C8dO0BOy3fnFlrXVNqD87DTPWBseGQTcTF2/WJJqBXoKpn1mG4D+mLYJr5Rj1yDLk5REb+uPPdMzv+QJQdDjpo8H14pNAjdiZH4OsiTBV24yC2j8aKz2mhCWBSPsZYZlk6Tqmpc+A6gVMEtu3QjJBClNfV1kKpnQtmJZuQ4F1sDgDtBxsU6QbP8WJmKHlEU5JdNUwispvdVeTPdqJkjbE40iS1LUqNknm1NFEP9bsQqEVrOw+SDiEwVrMKfeoSagwIDAQAB",
  "manifest_version": 2,
  "name": "Shopify Scraper",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "*://api.gumroad.com/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.3"
}