Packet Proxy

Packet Proxy

A quick proxy plugin for requests, cookies and headers

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "request.js"
    ]
  },
  "browser_action": {
    "default_icon": "packet proxy.png",
    "default_popup": "index.html",
    "default_title": "Choose your proxy."
  },
  "content_scripts": [
    {
      "js": [
        "/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "script/main.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J",
        "mac": "Command+Shift+Y",
        "windows": "Ctrl+Shift+Y"
      }
    }
  },
  "description": "A quick proxy plugin for requests, cookies and headers",
  "manifest_version": 2,
  "name": "Packet Proxy",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "tabs",
    "cookies"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "0.0.8"
}