Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Hvad er Restfox CORS Helper?
Restfox CORS Helper er en Chrome-udvidelse udviklet af https://restfox.dev, og dens hovedfunktion er "Help bypass CORS when making requests from Restfox".
Udvidelsesskærmbilleder
Download Restfox CORS Helper-udvidelses-CRX-fil
Download Restfox CORS Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
Officiel URL | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Beskrivelse | Help bypass CORS when making requests from Restfox |
Filstørrelse | 89.54 KB |
Antal Installationer | 416 |
Nuværende Version | 1.0.8 |
Senest Opdateret | 2023-11-23 |
Udgivelsesdato | 2022-09-08 |
Udvikler | https://restfox.dev |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/flawiddsouza/Restfox/issues |
Understøttede Sprog | 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" } } } |