CORSet!

Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.

CORSet!란 무엇입니까?

CORSet!은(는) Giuseppe Scotto Lavina에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs."입니다.

확장 프로그램 스크린샷

screenshot

CORSet! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows to make cross domain request with the MV3 API only on user's selected tabs.
(https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)

Click on the extension's icon to enable/disable CORSet on the current tab.

A small icon will be placed on the bottom-right side of the screen to remind you that CORSet is active on the current tab.

Browsing the WWW with CORS hurts really bad your system security, enable it just for development and on tabs where you really need it.

Required Chrome 90+
Icon made by Those Icons from www.flaticon.com                    

확장 프로그램 기본 정보

이름 CORSet! CORSet!
ID oljdpckmidhdkppcbigjhbgahhillkoj
공식 URL https://chromewebstore.google.com/detail/corset/oljdpckmidhdkppcbigjhbgahhillkoj
설명 Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.
파일 크기 37.53 KB
설치 횟수 57
현재 버전 1.0.0
최근 업데이트 2021-09-24
출시 날짜 2021-09-24
평점 5.00/5 총 7 개의 평점
개발자 Giuseppe Scotto Lavina
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CORSet!",
    "description": "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.",
    "version": "1.0.0",
    "author": "Giuseppe Scotto Lavina",
    "manifest_version": 3,
    "minimum_chrome_version": "90.0",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox; script-src 'self'; object-src 'self'"
    },
    "background": {
        "type": "module",
        "service_worker": "\/corset.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "webNavigation",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "Click to enable.",
        "default_icon": {
            "16": "\/icons\/corset-16.png",
            "32": "\/icons\/corset-32.png",
            "64": "\/icons\/corset-64.png",
            "128": "\/icons\/corset-128.png"
        }
    },
    "icons": {
        "16": "\/icons\/corset-active-16.png",
        "32": "\/icons\/corset-active-32.png",
        "64": "\/icons\/corset-active-64.png",
        "128": "\/icons\/corset-active-128.png"
    }
}