Shape AI

Shape AI

Ecommerce workflows simplified

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "109",
  "name": "Shape AI",
  "version": "1.0.3",
  "description": "Ecommerce workflows simplified",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "sidePanel",
    "identity"
  ],
  "host_permissions": [
    "http://localhost:9999/",
    "http://18.191.167.159:5000/*",
    "https://d3c8hgxz80pwq4.cloudfront.net/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self';",
    "content_scripts": "script-src 'self' https://d3c8hgxz80pwq4.cloudfront.net/ ; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.shopify.com/*",
        "*://*.etsy.com/*",
        "*://*.woo.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {},
  "oauth2": {
    "client_id": "551200351490-gubjc1a3d75bc2p3o5pak1uibm32mcm1.apps.googleusercontent.com",
    "scopes": [
      "*"
    ]
  }
}