Shopify helper

Shopify helper

Shopify helper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "0.0.2",
  "web_accessible_resources": [
    "img/icon48.png",
    "img/icon128.png"
  ],
  "browser_action": {
    "default_title": "__MSG_ext_name__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.myshopify.com/admin/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}