Copy as Python Requests

Copy as Python Requests

Copy requests from the devtools network panel as python requests code

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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": 3,
  "icons": {
    "16": "icons/logo-16.png",
    "32": "icons/logo-32.png",
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png",
    "128": "icons/logo-128.png"
  },
  "minimum_chrome_version": "88.0",
  "devtools_page": "devtools.html",
  "options_ui": {
    "browser_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "browser_style": true,
    "default_title": "Copy as Python Requests",
    "default_popup": "popup.html"
  }
}