The ShopiSpy

The ShopiSpy

Google Chrome Web Store Extension that is able to scrape the used Theme and Products from a Shopify Shop

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The ShopiSpy",
  "version": "1.3",
  "description": "Google Chrome Web Store Extension that is able to scrape the used Theme and Products from a Shopify Shop",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_title": "The ShopiSpy",
    "default_icon": "images/icon_gray.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "activeTab",
    "identity.email"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "config.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "770038864730-keu5rn9mij7ccfs3nrs31rfgsdtgrqub.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/user.emails.read"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}