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.”。
擴展截圖
下載Disable Content-Security-Policy擴展crx文件
下載Disable Content-Security-Policy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | ieelmcmcagommplceebfedjlakkhpden |
官方網址 | 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" } } |