Copy as Python Requests

Copy as Python Requests

Copy requests from the devtools network panel as Python requests code for fast traffic mimicing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Copy as Python Requests",
  "description": "Copy requests from the devtools network panel as python requests code",
  "version": "1.1",
  "author": "Jannik Hartung",
  "manifest_version": 2,
  "icons": {
    "16": "icons/logo.svg",
    "32": "icons/logo.svg",
    "48": "icons/logo.svg",
    "96": "icons/logo.svg",
    "128": "icons/logo.svg"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "55.0",
      "id": "{4f69fcd1-e7ff-409c-8e9b-3825f41e95ab}"
    }
  },
  "devtools_page": "devtools.html",
  "options_ui": {
    "chrome_style": true,
    "browser_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_title": "Copy as Python Requests",
    "default_popup": "popup.html"
  }
}