Restfox CORS Helper

Help bypass CORS when making requests from Restfox

Restfox CORS Helper란 무엇입니까?

Restfox CORS Helper은(는) https://restfox.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Help bypass CORS when making requests from Restfox"입니다.

확장 프로그램 스크린샷

screenshot

Restfox CORS Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
공식 URL https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
설명 Help bypass CORS when making requests from Restfox
파일 크기 89.54 KB
설치 횟수 416
현재 버전 1.0.8
최근 업데이트 2023-11-23
출시 날짜 2022-09-08
개발자 https://restfox.dev
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/flawiddsouza/Restfox/issues
지원되는 언어 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"
        }
    }
}