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. 拡張機能の基本情報
| 名前 | |
| ID | ieelmcmcagommplceebfedjlakkhpden |
| 公式URL | 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"
}
} | |