Ajax Proxy

Ajax Proxy

Modify your Ajax response to test

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Ajax Proxy",
  "version": "2.2.10",
  "description": "Modify your Ajax response to test",
  "author": "Gj",
  "icons": {
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs"
  ],
  "action": {
    "default_icon": "icons/48g.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "open_panel": {
      "suggested_key": {
        "default": "Shift+Alt+Q",
        "windows": "Shift+Alt+Q",
        "mac": "Shift+Alt+Q",
        "linux": "Shift+Alt+Q"
      },
      "description": "Open panel"
    },
    "close_panel": {
      "suggested_key": {
        "default": "Shift+Alt+C",
        "windows": "Shift+Alt+C",
        "mac": "Shift+Alt+C",
        "linux": "Shift+Alt+C"
      },
      "description": "Close panel"
    },
    "full_screen": {
      "suggested_key": {
        "default": "Shift+Alt+W",
        "windows": "Shift+Alt+W",
        "mac": "Shift+Alt+W",
        "linux": "Shift+Alt+W"
      },
      "description": "Full screen"
    },
    "resize_window": {
      "suggested_key": {
        "default": "Shift+Alt+S",
        "windows": "Shift+Alt+S",
        "mac": "Shift+Alt+S",
        "linux": "Shift+Alt+S"
      },
      "description": "Resize screen"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "document.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}