Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Cos'è Restfox CORS Helper?
Restfox CORS Helper è un'estensione di Chrome sviluppata da https://restfox.dev, e la sua funzione principale è "Help bypass CORS when making requests from Restfox".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Restfox CORS Helper
Scarica i file di estensione Restfox CORS Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
URL Ufficiale | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Descrizione | Help bypass CORS when making requests from Restfox |
Dimensione del File | 89.54 KB |
Conteggio Installazioni | 416 |
Versione Corrente | 1.0.8 |
Ultimo Aggiornamento | 2023-11-23 |
Data di Pubblicazione | 2022-09-08 |
Sviluppatore | https://restfox.dev |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/flawiddsouza/Restfox/issues |
Lingue Supportate | 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" } } } |