Shopify theme edit & liquid file search tool

Shopify theme file quick search and edit tool
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_icon": "icon-128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "content.styles.css"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "matches": [
        "https://*.myshopify.com/admin/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'; child-src 'self'"
  },
  "default_locale": "en",
  "description": "Shopify theme file quick search and edit tool",
  "homepage_url": "https://findniche.com/",
  "host_permissions": [],
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 3,
  "name": "Shopify theme edit & liquid file search tool",
  "permissions": [],
  "version": "1.0.3",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "content.styles.css",
        "icon-128.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}