Packet Proxy

A quick proxy plugin for requests, cookies and headers

什麼是Packet Proxy?

Packet Proxy是由wisestcoder開發的Chrome擴展程式,該擴展的主要功能是“A quick proxy plugin for requests, cookies and headers”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Packet Proxy擴展crx文件

下載Packet Proxy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        What can Packet Proxy do?
  1. Acting as a proxy for resources、requests
  2. Modify cookies to solve authentication problems
  3. Modify HTTP request and response headers

Why install it?
  1. You can proxy your resources and requests such like charles did.  you never have to build a nginx server
  2. You can solve authentication problems. When we develop and debug locally, we can get cookies from remote server automatically.
  3. You can add and modify remove request headers and response headers. you can use this to set X-Forwarded-For, Authorization, Access-Control-Allow-Origin, and more.                    

擴展基本資訊

名稱 Packet Proxy Packet Proxy
ID epijjcjapnhhinolocfiheeihedbpnip
官方網址 https://chromewebstore.google.com/detail/packet-proxy/epijjcjapnhhinolocfiheeihedbpnip
簡介 A quick proxy plugin for requests, cookies and headers
檔案大小 3.79 MB
安裝次數 175
目前版本 0.0.8
更新時間 2023-02-23
上架時間 2021-02-10
評分 5.00/5 共 6 次評分
開發者 wisestcoder
電子郵箱 [email protected]
付費類型 free
支援的語言 zh-CN
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": [
                ""
            ],
            "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",
        "",
        "tabs",
        "cookies"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.8"
}