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 là gì?
Always Disable Content-Security-Policy là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Always Disable Content-Security-Policy
Tải xuống các tệp mở rộng Always Disable Content-Security-Policy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Always Disable Content-Security-Policy |
ID | ffelghdomoehpceihalcnbmnodohkibj |
URL Chính Thức | https://chromewebstore.google.com/detail/always-disable-content-se/ffelghdomoehpceihalcnbmnodohkibj |
Mô tả | Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled. |
Kích Thước Tệp | 13.2 KB |
Số Lần Cài Đặt | 13,028 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2020-01-10 |
Ngày Phát Hành | 2020-01-10 |
Đánh Giá | 3.64/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |