Restfox CORS Helper

Help bypass CORS when making requests from Restfox

Co je Restfox CORS Helper?

Restfox CORS Helper je rozšíření Chrome vyvinuté https://restfox.dev, a jeho hlavní funkcí je „Help bypass CORS when making requests from Restfox“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Restfox CORS Helper

Stáhněte si soubory rozšíření Restfox CORS Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
Oficiální URL https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
Popis Help bypass CORS when making requests from Restfox
Velikost souboru 89.54 KB
Počet instalací 416
Aktuální Verze 1.0.8
Poslední Aktualizace 2023-11-23
Datum Vydání 2022-09-08
Vývojář https://restfox.dev
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/flawiddsouza/Restfox/issues
Podporované Jazyky 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"
        }
    }
}