Shopify Theme Inspector for Chrome

Shopify Theme Inspector for Chrome

Profile and debug Liquid template on your Shopify store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shopify Theme Inspector for Chrome",
  "version": "2.0.5",
  "description": "Profile and debug Liquid template on your Shopify store",
  "devtools_page": "devtools.html",
  "permissions": [
    "storage",
    "identity",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/16-shopify.png",
    "32": "images/32-shopify.png",
    "48": "images/48-shopify.png",
    "128": "images/128-shopify.png"
  },
  "page_action": {
    "default_popup": "popupNotShopifyStore.html",
    "default_icon": {
      "16": "images/16-shopify-dimmed.png",
      "32": "images/32-shopify-dimmed.png",
      "48": "images/48-shopify-dimmed.png",
      "128": "images/128-shopify-dimmed.png"
    }
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "detectShopify.js"
      ],
      "run_at": "document_idle"
    }
  ]
}