Local-CORS

Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header

Local-CORS란 무엇입니까?

Local-CORS은(는) Of cors에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is meant to be used by web developers who need to test UI changes from their local machines against a remote API that doesn't allow localhost CORS requests.

Make sure you understand how CORS works (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) before enabling this extension. As a best practice, you should lock down the intercepted URL pattern to only the API you are actually trying to test.                    

확장 프로그램 기본 정보

이름 Local-CORS Local-CORS
ID bhachhlaofmplbfnefenmlnflolelkff
공식 URL https://chromewebstore.google.com/detail/local-cors/bhachhlaofmplbfnefenmlnflolelkff
설명 Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
파일 크기 1.58 MB
설치 횟수 3,022
현재 버전 0.0.1
최근 업데이트 2019-08-06
출시 날짜 2019-08-06
평점 1.17/5 총 6 개의 평점
개발자 Of cors
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ncronquist/local-cors
도움말 페이지 URL https://github.com/ncronquist/local-cors/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/off.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/localhost*",
        "https:\/\/localhost*",
        "http:\/\/127.0.0.1*",
        "https:\/\/127.0.0.1*"
    ],
    "web_accessible_resources": [
        "images\/on.png",
        "images\/off.png"
    ],
    "options_page": "options.html"
}