Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Wat is Restfox CORS Helper?
Restfox CORS Helper is een Chrome-extensie ontwikkeld door https://restfox.dev, en de belangrijkste functie is "Help bypass CORS when making requests from Restfox".
Extensie Screenshots
Download het CRX-bestand van de extensie Restfox CORS Helper
Download Restfox CORS Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
Officiële URL | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Beschrijving | Help bypass CORS when making requests from Restfox |
Bestandsgrootte | 89.54 KB |
Aantal Installaties | 416 |
Huidige Versie | 1.0.8 |
Laatst Bijgewerkt | 2023-11-23 |
Publicatiedatum | 2022-09-08 |
Ontwikkelaar | https://restfox.dev |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/flawiddsouza/Restfox/issues |
Ondersteunde Talen | 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" } } } |