AutoResponder Chrome

Catch the requests and return response from other urls or local files, block ads, inject request headers.

Что такое AutoResponder Chrome?

AutoResponder Chrome - это расширение Chrome, разработанное SocialWorker, и его основная функция - "Catch the requests and return response from other urls or local files, block ads, inject request headers.".

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

screenshot
screenshot
screenshot

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

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

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

                        Lightweight alternative for auto responder in fiddler. 
Use this extension to return a mocked custom response or to return a response from another backend address to a deployed client.                    

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

Название AutoResponder Chrome AutoResponder Chrome
ID gdeemmakbfhjckeonddaabfpnllgahng
Официальный URL https://chromewebstore.google.com/detail/autoresponder-chrome/gdeemmakbfhjckeonddaabfpnllgahng
Описание Catch the requests and return response from other urls or local files, block ads, inject request headers.
Размер файла 116 KB
Количество установок 468
Текущая Версия 2.1
Последнее Обновление 2022-08-05
Дата публикации 2021-06-14
Разработчик SocialWorker
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sushrut111/requests-modifier
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoResponder Chrome",
    "description": "Catch the requests and return response from other urls or local files, block ads, inject request headers.",
    "version": "2.1",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "icons": {
        "128": "icon.png"
    }
}