Shopify Theme helper

Shopify Theme helper

Capture Shopify Theme Preview link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shopify Theme helper",
  "version": "2.0.2",
  "manifest_version": 2,
  "description": "Capture Shopify Theme Preview link",
  "author": "Appsdart",
  "icons": {
    "16": "images/themehelper_16x.png",
    "48": "images/themehelper_48x.png",
    "128": "images/themehelper_128x.png"
  },
  "browser_action": {
    "default_icon": "images/themehelper_48x.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage",
    "background",
    "clipboardWrite"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}