Restfox CORS Helper
Help bypass CORS when making requests from Restfox
O que é Restfox CORS Helper?
Restfox CORS Helper é uma extensão do Chrome desenvolvida por https://restfox.dev, e sua principal característica é "Help bypass CORS when making requests from Restfox".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Restfox CORS Helper
Baixe arquivos de extensão Restfox CORS Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
URL Oficial | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Descrição | Help bypass CORS when making requests from Restfox |
Tamanho do Arquivo | 89.54 KB |
Contagem de Instalações | 416 |
Versão Atual | 1.0.8 |
Última Atualização | 2023-11-23 |
Data de Publicação | 2022-09-08 |
Desenvolvedor | https://restfox.dev |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/flawiddsouza/Restfox/issues |
Idiomas Suportados | 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" } } } |