Always Disable Content-Security-Policy

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

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

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

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is a fork of Phil Grayson's extension with the only difference being that this one disables the headers by default. Original: https://chrome.google.com/webstore/detail/disable-content-security/ieelmcmcagommplceebfedjlakkhpden
Use at your own risk. Disables the current page's Content Security Policy. Useful when testing what resources a new third-party tag includes onto the page.

Click the extension icon to re-enable CSP headers. Click the extension icon again to disable CSP headers.

Use this only as a last resort. Disabling CSP 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 CSP 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.                    

확장 프로그램 기본 정보

이름 Always Disable Content-Security-Policy Always Disable Content-Security-Policy
ID ffelghdomoehpceihalcnbmnodohkibj
공식 URL https://chromewebstore.google.com/detail/always-disable-content-se/ffelghdomoehpceihalcnbmnodohkibj
설명 Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.
파일 크기 13.2 KB
설치 횟수 13,028
현재 버전 1.0.7
최근 업데이트 2020-01-10
출시 날짜 2020-01-10
평점 3.64/5 총 14 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en,en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Always Disable Content-Security-Policy",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "1.0.7",
    "author": "Phil Grayson",
    "homepage_url": "https:\/\/github.com\/PhilGrayson\/chrome-csp-disable",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "browsingData",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Content-Security-Policy headers are disabled",
        "default_icon": {
            "16": "images\/icon38-off.png"
        }
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}