CustomerVox Shopify Personalization

CustomerVox Shopify Personalization

Chrome extension for personalization shopify store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "CustomerVox Shopify Personalization",
  "name": "CustomerVox Shopify Personalization",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Chrome extension for personalization shopify store",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Open inspector"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "scripts": [
      "static/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.myshopify.com/admin/*"
      ],
      "css": [
        "static/css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.customervox.com/*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "https://app.customervox.com/",
    "https://staging.customervox.com/",
    "https://localhost:3000/"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/*.svg",
    "fonts/sofia/*.otf",
    "fonts/sf-pro/*.woff"
  ]
}