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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}