Inssman: Open-Source: Modify HTTP Request

Inssman: Open-Source: Modify HTTP Request

Intercept HTTP(S) Request, Modify Headers, Log headers, Change Response, Block Request, Redirect, Custom HTML/CSS/JS/JSON

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Inssman: Open-Source: Modify HTTP Request",
  "description": "Intercept HTTP(S) Request, Modify Headers, Log headers, Change Response, Block Request, Redirect, Custom HTML/CSS/JS/JSON",
  "version": "1.0.62",
  "manifest_version": 3,
  "background": {
    "service_worker": "./serviceWorker/serviceWorker.js",
    "type": "module"
  },
  "options_page": "options/options.html",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "setupContentConfig/setupContentConfig.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.inssman.com/app/*"
      ],
      "js": [
        "iframeContentScript/iframeContentScript.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "cotentScript/cotentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "http://localhost:3000/app/*",
        "http://localhost:3000/app"
      ],
      "js": [
        "iframeContentScript/iframeContentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://*/*",
      "https://*/*"
    ],
    "accepts_tls_channel_id": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "recordSession/recordSession.js",
        "recorderWidget/recorderWidget.js",
        "startRecording/startRecording.js",
        "options/options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback",
    "webNavigation",
    "scripting",
    "tabs",
    "webRequest",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "/assets/images/icons/inssman_16.png",
      "32": "/assets/images/icons/inssman_32.png",
      "48": "/assets/images/icons/inssman_48.png",
      "128": "/assets/images/icons/inssman_128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "/assets/images/icons/inssman_16.png",
    "32": "/assets/images/icons/inssman_32.png",
    "48": "/assets/images/icons/inssman_48.png",
    "128": "/assets/images/icons/inssman_128.png"
  }
}