CORS Helper

Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.

CORS Helper란 무엇입니까?

CORS Helper은(는) Atom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Users can set different return values to allow users to be granted access to specified resources from different source servers.
Users can customize the value of the HTTP response header

It should be noted that when Access-Control-Allow-Origin is set to "*", the identity certificate cannot be attached.
Of course you can specify a unique Origin such as http://localhost:3000

Instructions
After installing the plugin, click the icon in the upper right corner to enable "cross-source resource sharing".

Custom configuration
After installing the plugin, click the icon in the upper right corner and click "Customize" to enter the configuration page.

The "HTTP Response Header" page allows you to add custom Access-Control-* header information to the HTTP response header
"White List" page allows you to customize the website for applying rules                    

확장 프로그램 기본 정보

이름 CORS Helper CORS Helper
ID jckpaobldaolbbchaeicopkcljcaiaka
공식 URL https://chromewebstore.google.com/detail/cors-helper/jckpaobldaolbbchaeicopkcljcaiaka
설명 Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.
파일 크기 67.38 KB
설치 횟수 4,335
현재 버전 1.2.2
최근 업데이트 2019-06-14
출시 날짜 2019-06-11
평점 3.67/5 총 3 개의 평점
개발자 Atom
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CORS Helper",
    "description": "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.",
    "version": "1.2.2",
    "homepage_url": "https:\/\/github.com\/jhrxx\/CORS-Chrome-extension",
    "default_locale": "en_US",
    "browser_action": {
        "default_icon": "off.png",
        "default_popup": "popup.html",
        "default_title": "Cross-Origin Settings"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "webRequest",
        "",
        "webRequestBlocking"
    ]
}