HTTP Developer Aids

HTTP Developer Aids

HTTP Monitoring is a developer tool designed to help developers monitor and analyze their application's network requests and…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HTTP Developer Aids",
  "version": "1.0.7",
  "permissions": [
    "storage",
    "webRequest",
    "cookies",
    "http://accounts.google.com/*",
    "https://accounts.google.com/*"
  ],
  "host_permissions": [
    "http://accounts.google.com/*",
    "https://accounts.google.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://accounts.google.com/*",
        "https://accounts.google.com/*",
        "https://my.msafely.com/*",
        "https://my.spyx.com/*",
        "https://my.spyphone.cc/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}