Packet Proxy

A quick proxy plugin for requests, cookies and headers

Packet Proxy क्या है?

Packet Proxy wisestcoder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A quick proxy plugin for requests, cookies and headers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Packet Proxy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}