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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Phil Grayson, και η κύρια λειτουργία του είναι "Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Disable Content-Security-Policy
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } } |