Replay: Splunk -> Checkout One

Replay: Splunk -> Checkout One

Inspect and replay Checkout One requests easily from Splunk logs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Replay: Splunk -> Checkout One",
  "description": "Inspect and replay Checkout One requests easily from Splunk logs.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://logs.shopify.io/*",
        "https://*.myshopify.com/checkouts/unstable/graphql"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": false,
      "match_about_blank": false
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}