Disable-CSP

A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

Disable-CSP란 무엇입니까?

Disable-CSP은(는) lisonge에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy"입니다.

확장 프로그램 스크린샷

screenshot

Disable-CSP 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

In the process of website development and testing, we inevitably need to inject cross-domain resources into some websites, but Content-Security-Policy prevents this. So you can use this extension to disable Content-Security-Policy so that you have a better development experience

- disable http header csp
- disable html meta csp (must open devtools)

source code https://github.com/lisonge/Disable-CSP                    

확장 프로그램 기본 정보

이름 Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
공식 URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
설명 A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
파일 크기 34.07 KB
설치 횟수 261
현재 버전 1.0.3
최근 업데이트 2023-09-10
출시 날짜 2023-07-24
개발자 lisonge
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lisonge/Disable-CSP
도움말 페이지 URL https://github.com/lisonge/Disable-CSP/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable-CSP",
    "version": "1.0.3",
    "author": "lisonge",
    "homepage_url": "https:\/\/github.com\/lisonge\/Disable-CSP",
    "description": "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy",
    "icons": {
        "128": "src\/assets\/icon-128.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "debugger",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "128": "src\/assets\/icon-128.png"
        }
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "devtools_page": "html\/devtools.html"
}