Restfox CORS Helper

Help bypass CORS when making requests from Restfox

Vad är Restfox CORS Helper?

Restfox CORS Helper är en Chrome-tillägg utvecklad av https://restfox.dev, och dess huvudfunktion är "Help bypass CORS when making requests from Restfox".

Tilläggsskärmbilder

screenshot

Ladda ner Restfox CORS Helper-förlängningens CRX-fil

Ladda ner Restfox CORS Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
Officiell webbadress https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
Beskrivning Help bypass CORS when making requests from Restfox
Filstorlek 89.54 KB
Antal Installationer 416
Aktuell Version 1.0.8
Senast Uppdaterad 2023-11-23
Publiceringsdatum 2022-09-08
Utvecklare https://restfox.dev
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/flawiddsouza/Restfox/issues
Stödda Språk 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"
        }
    }
}