Restfox CORS Helper

Help bypass CORS when making requests from Restfox

Co to jest Restfox CORS Helper?

Restfox CORS Helper to rozszerzenie Chrome opracowane przez https://restfox.dev, a jego główną funkcją jest „Help bypass CORS when making requests from Restfox”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Restfox CORS Helper

Pobierz pliki rozszerzeń Restfox CORS Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
Oficjalny URL https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
Opis Help bypass CORS when making requests from Restfox
Rozmiar pliku 89.54 KB
Liczba instalacji 416
Aktualna Wersja 1.0.8
Ostatnia Aktualizacja 2023-11-23
Data Publikacji 2022-09-08
Deweloper https://restfox.dev
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/flawiddsouza/Restfox/issues
Obsługiwane Języki 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"
        }
    }
}