ReqBin HTTP Client

ReqBin HTTP Client

ReqBin HTTP Client to send HTTP API requests to the localhost and servers on your local network.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ReqBin HTTP Client",
  "description": "ReqBin HTTP Client to send HTTP API requests to the localhost and servers on your local network.",
  "version": "1.1",
  "manifest_version": 3,
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://*.reqbin.com/*"
    ]
  },
  "action": {
    "default_title": "ReqBin HTTP API Client",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/16.png",
      "32": "img/32.png",
      "48": "img/48.png",
      "128": "img/128.png"
    }
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  }
}