Disable Content-Security-Policy

Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.

Disable Content-Security-Policy란 무엇입니까?

Disable Content-Security-Policy은(는) Phil Grayson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Disable Content-Security-Policy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use at your own risk. This disables the Content-Security-Policy header for a tab. Use this when testing what resources a new third-party tag includes onto the page.

Click the extension icon to disable Content-Security-Policy header for the tab. Click the extension icon again to re-enable Content-Security-Policy header.

Use this only as a last resort. Disabling Content-Security-Policy means disabling features designed to protect you from cross-site scripting. Prefer to use report-uri which instructs the browser to send CSP violations to a URI. That allows you keep Content-Security-Policy enabled in your browser but still know what got blocked. https://report-uri.com is a free tool that gives you a web interface to inspect CSP violations on your site.                    

확장 프로그램 기본 정보

이름 Disable Content-Security-Policy Disable Content-Security-Policy
ID ieelmcmcagommplceebfedjlakkhpden
공식 URL https://chromewebstore.google.com/detail/disable-content-security/ieelmcmcagommplceebfedjlakkhpden
설명 Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.
파일 크기 23.53 KB
설치 횟수 67,011
현재 버전 3.0.0
최근 업데이트 2020-05-06
출시 날짜 2020-05-06
평점 3.61/5 총 80 개의 평점
개발자 Phil Grayson
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/PhilGrayson/chrome-csp-disable
지원되는 언어 en,en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable Content-Security-Policy",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "3.0.0",
    "author": "Phil Grayson",
    "homepage_url": "https:\/\/github.com\/PhilGrayson\/chrome-csp-disable",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "browsingData",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Content-Security-Policy headers are enabled",
        "default_icon": {
            "16": "images\/icon38-off.png"
        }
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}