EASY CORS

Add cors headers to response header.

EASY CORS란 무엇입니까?

EASY CORS은(는) Ikeq Cheng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add cors headers to response header."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This plugin aims to patch http headers to succeed cross domain request for developers (mainly front end developers ^_^). 

The main features is as follows:

1. Very simplified UI.
2. Set Access-Control-Allow-Origin to the request domain's origin instead of *.
3. Blacklist mode instead of whitelist mode (eg. only set your dev servers' origin).                    

확장 프로그램 기본 정보

이름 EASY CORS EASY CORS
ID gcdaaelgdlicnnichhholnoagafangej
공식 URL https://chromewebstore.google.com/detail/easy-cors/gcdaaelgdlicnnichhholnoagafangej
설명 Add cors headers to response header.
파일 크기 55.17 KB
설치 횟수 4,349
현재 버전 0.2.5
최근 업데이트 2020-11-15
출시 날짜 2020-04-02
평점 4.65/5 총 17 개의 평점
개발자 Ikeq Cheng
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tools.oniuo.com/cors/
도움말 페이지 URL https://tools.oniuo.com/cors/support
지원되는 언어 en,zh-CN
manifest.json
{
    "manifest_version": 2,
    "version": "0.2.5",
    "description": "__MSG_app_desc__",
    "homepage_url": "https:\/\/tools.oniuo.com\/cors\/",
    "name": "__MSG_app_title__",
    "short_name": "__MSG_app_title__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "activeTab",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "icons\/on.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_app_title__",
        "default_icon": {
            "128": "icons\/on.png"
        }
    }
}