Shopify Post-purchase Developer Tools

Shopify Post-purchase Developer Tools

Adds debugging and convenience tools for developing Shopify's post-purchase extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shopify Post-purchase Developer Tools",
  "version": "3.0.1",
  "description": "Adds debugging and convenience tools for developing Shopify's post-purchase extensions",
  "options_ui": {
    "page": "./build/options/index.html",
    "open_in_tab": true
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "./build/backgroundScripts/background.js"
    ]
  },
  "icons": {
    "128": "./images/logo.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ]
}