Cross Domain - CORS

Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.

Cross Domain - CORS란 무엇입니까?

Cross Domain - CORS은(는) Mai Tan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Visit out website: https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
Cross Domain will help you to deal with cross domain - Cross-Origin Resource Sharing (CORS) problem. This is a small tool will helpful for web developer and related domain that face with cross domain issue.

List of feature:
- Allow cross domain
- Customize Url pattern base on Javascript Regex
- Allow enable, disable
- Very friendly interface

Under the hood:
This extension allow Cross-Origin Resource Sharing (CORS) by modify header response from server and add more header to allow CORS request:
  Access-control-allow-origin
  Access-control-allow-methods
  Access-control-allow-headers
  Access-control-expose-headers
This is for development purpose only.                    

확장 프로그램 기본 정보

이름 Cross Domain - CORS Cross Domain - CORS
ID mjhpgnbimicffchbodmgfnemoghjakai
공식 URL https://chromewebstore.google.com/detail/cross-domain-cors/mjhpgnbimicffchbodmgfnemoghjakai
설명 Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.
파일 크기 118 KB
설치 횟수 51,209
현재 버전 0.2.3
최근 업데이트 2021-05-23
출시 날짜 2020-04-28
평점 4.10/5 총 58 개의 평점
개발자 Mai Tan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
도움말 페이지 URL https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.2.3",
    "name": "Cross Domain - CORS",
    "description": "Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.",
    "icons": {
        "64": "icons\/enable-64.png",
        "128": "icons\/enable-128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/enable-64.png",
        "default_title": "Cross Domain - CORS",
        "default_popup": "popup\/panel.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}