Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Was ist Restfox CORS Helper?
Restfox CORS Helper ist eine Chrome-Erweiterung, die von https://restfox.dev entwickelt wurde, und ihr Hauptmerkmal ist "Help bypass CORS when making requests from Restfox".
Erweiterungsscreenshots
Restfox CORS Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Restfox CORS Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
Offizielle URL | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Beschreibung | Help bypass CORS when making requests from Restfox |
Dateigröße | 89.54 KB |
Installationsanzahl | 416 |
Aktuelle Version | 1.0.8 |
Letztes Update | 2023-11-23 |
Veröffentlichungsdatum | 2022-09-08 |
Entwickler | https://restfox.dev |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/flawiddsouza/Restfox/issues |
Unterstützte Sprachen | 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" } } } |