Triple Whale

Triple Whale

Get real time data for your Shopify store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Triple Whale",
  "description": "Get real time data for your Shopify store",
  "version": "1.18",
  "content_scripts": [
    {
      "matches": [
        "https://*.myshopify.com/admin/*",
        "https://admin.shopify.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png",
    "512": "icon.png"
  }
}