Content Security Policy Override

Modify the Content Security Policy of web pages.

Content Security Policy Override란 무엇입니까?

Content Security Policy Override은(는) https://rufflewind.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Modify the Content Security Policy of web pages."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Allows the user to modify the Content Security Policy (CSP) of web pages.

Warning: improper use of this add-on can diminish the security of your browser. Do not use unless you really know what you're doing.

To edit the configuration, go to chrome://extensions and click Options under Content Security Policy Override.

The text area in the Options will automatically save as you edit.

Bugs should be reported here: https://github.com/Rufflewind/chrome_cspmod/issues                    

확장 프로그램 기본 정보

이름 Content Security Policy Override Content Security Policy Override
ID lhieoncdgamiiogcllfmboilhgoknmpi
공식 URL https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi
설명 Modify the Content Security Policy of web pages.
파일 크기 13.54 KB
설치 횟수 2,934
현재 버전 1.2.0
최근 업데이트 2018-06-16
출시 날짜 2018-06-15
평점 4.22/5 총 9 개의 평점
개발자 https://rufflewind.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Rufflewind/chrome_cspmod
도움말 페이지 URL https://github.com/Rufflewind/chrome_cspmod/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2.0",
    "name": "Content Security Policy Override",
    "description": "Modify the Content Security Policy of web pages.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}