Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Что такое Restfox CORS Helper?
Restfox CORS Helper - это расширение Chrome, разработанное https://restfox.dev, и его основная функция - "Help bypass CORS when making requests from Restfox".
Снимки экрана расширения
Скачать файл CRX расширения Restfox CORS Helper
Скачайте файлы расширений Restfox CORS Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Restfox is web based HTTP client (similar to Postman & Insomnia) that allows you to test HTTP endpoints completely in-browser without using a backend or a desktop application. This extension provides the ability to bypass CORS restrictions so that you can make requests from the Restfox web application without worrying about CORS issues. You can find Restfox at https://restfox.dev
Основная информация о расширении
Название | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
Официальный URL | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Описание | Help bypass CORS when making requests from Restfox |
Размер файла | 89.54 KB |
Количество установок | 416 |
Текущая Версия | 1.0.8 |
Последнее Обновление | 2023-11-23 |
Дата публикации | 2022-09-08 |
Разработчик | https://restfox.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/flawiddsouza/Restfox/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Restfox CORS Helper", "description": "Help bypass CORS when making requests from Restfox", "version": "1.0.8", "manifest_version": 3, "icons": { "512": "icons\/favicon.png" }, "permissions": [ "scripting", "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "512": "icons\/favicon-disabled.png" } } } |