Ngrok Raw2cURL

Ngrok Raw2cURL

Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.1",
  "name": "Ngrok Raw2cURL",
  "icons": {
    "16": "public/icons/16.png",
    "48": "public/icons/48.png",
    "128": "public/icons/128.png"
  },
  "description": "Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.",
  "content_scripts": [
    {
      "matches": [
        "http://localhost:4040/inspect/http"
      ],
      "js": [
        "copyCurl.js",
        "lib/toastify/toastify.js",
        "lib/toast.js"
      ],
      "css": [
        "lib/toastify/toastify.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/toastify/toastify.css"
      ],
      "matches": [
        "http://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}