Theme Explorer for Shopify

Theme Explorer for Shopify

Theme Explorer allows you to view important information about the themes installed on 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": "Theme Explorer for Shopify",
  "version": "1.4.1",
  "description": "Theme Explorer allows you to view important information about the themes installed on your Shopify store.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon48.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.bundle.js",
        "injectScript.bundle.js",
        "icon128.png",
        "icon48.png",
        "icon16.png",
        "nunito.woff2",
        "nunito-italic.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}