Request Proxy

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

Что такое Request Proxy?

Request Proxy - это расширение Chrome, разработанное bingkang.hu, и его основная функция - "Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Request Proxy

Скачайте файлы расширений Request Proxy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Request Proxy Request Proxy
ID digjmlhcaacaacikomjmnknlgpgnepph
Официальный URL https://chromewebstore.google.com/detail/request-proxy/digjmlhcaacaacikomjmnknlgpgnepph
Описание Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…
Размер файла 2.27 MB
Количество установок 57
Текущая Версия 1.0.2
Последнее Обновление 2022-05-26
Дата публикации 2022-05-20
Рейтинг 5.00/5 Всего 2 оценок
Разработчик bingkang.hu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/hubingkang/request-proxy
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}