Browser Header Filter: No CSP
Disables CSP headers
Browser Header Filter: No CSP란 무엇입니까?
Browser Header Filter: No CSP은(는) YaDeveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disables CSP headers"입니다.
확장 프로그램 스크린샷
Browser Header Filter: No CSP 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Easing developers life by removing CSP headers and logging them on the background page. Now you can test your scripts from Developer Tools console as long as you want. To disable CSP headers simply activate the extension. To enable them again just deactivate it. Handle with care. !!Do not install if you do not know what is it for!!
확장 프로그램 기본 정보
이름 | Browser Header Filter: No CSP |
ID | bdpbgfaoocdjolgbgjmpphgolanldnfo |
공식 URL | https://chromewebstore.google.com/detail/browser-header-filter-no/bdpbgfaoocdjolgbgjmpphgolanldnfo |
설명 | Disables CSP headers |
파일 크기 | 34.92 KB |
설치 횟수 | 147 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-10-31 |
출시 날짜 | 2021-10-30 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | YaDeveloper |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://telegra.ph/Privacy-policy-10-25-7 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browser Header Filter: No CSP", "description": "Disables CSP headers", "version": "1.0", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "i16.png", "32": "i32.png", "48": "i48.png", "128": "i128.png" }, "web_accessible_resources": [ "*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'; child-src 'self'; connect-src 'self' https:\/\/www.google-analytics.com www.google-analytics.com https:\/\/stats.g.doubleclick.net; img-src 'self' data: chrome: https:\/\/www.google-analytics.com www.google-analytics.com https:\/\/stats.g.doubleclick.net; style-src 'self'; default-src 'self'", "manifest_version": 2 } |