Restfox CORS Helper

Help bypass CORS when making requests from Restfox

What is Restfox CORS Helper?

Restfox CORS Helper is a Chrome extension developed by https://restfox.dev, and its main feature is "Help bypass CORS when making requests from Restfox".

Extension Screenshots

screenshot

Download Restfox CORS Helper Extension CRX File

Download Restfox CORS Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
Official URL https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
Description Help bypass CORS when making requests from Restfox
File Size 89.54 KB
Installation Count 416
Current Version 1.0.8
Last Updated 2023-11-23
Publish Date 2022-09-08
Developer https://restfox.dev
Email [email protected]
Payment Type free
Help Page URL https://github.com/flawiddsouza/Restfox/issues
Supported Languages 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"
        }
    }
}