Request Proxy

Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…

Vad är Request Proxy?

Request Proxy är en Chrome-tillägg utvecklad av bingkang.hu, och dess huvudfunktion är "Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Request Proxy-förlängningens CRX-fil

Ladda ner Request Proxy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Chrome request proxy extension

1. Supports modifying Ajax/Fetch Request query
2. Supports modifying Ajax/Fetch Request body
3. Supports modifying Ajax/Fetch Request header
4. Supports modifying Ajax/Fetch Response

github: https://github.com/hubingkang/request-proxy                    

Grundläggande Information om Tillägg

Namn Request Proxy Request Proxy
ID digjmlhcaacaacikomjmnknlgpgnepph
Officiell webbadress https://chromewebstore.google.com/detail/request-proxy/digjmlhcaacaacikomjmnknlgpgnepph
Beskrivning Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…
Filstorlek 2.27 MB
Antal Installationer 57
Aktuell Version 1.0.2
Senast Uppdaterad 2022-05-26
Publiceringsdatum 2022-05-20
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare bingkang.hu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/hubingkang/request-proxy
Stödda Språk zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Request Proxy",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/request_proxy_enabled16.png",
            "32": "\/images\/request_proxy_enabled32.png",
            "48": "\/images\/request_proxy_enabled48.png",
            "128": "\/images\/request_proxy_enabled128.png"
        }
    },
    "icons": {
        "16": "\/images\/request_proxy_enabled16.png",
        "32": "\/images\/request_proxy_enabled32.png",
        "48": "\/images\/request_proxy_enabled48.png",
        "128": "\/images\/request_proxy_enabled128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "wrapper.js",
                "dist\/index.html",
                "dist\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}