Always Disable Content-Security-Policy

Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.

Qu'est-ce que Always Disable Content-Security-Policy ?

Always Disable Content-Security-Policy est une extension Chrome développée par Unknown, et sa fonction principale est "Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Always Disable Content-Security-Policy

Téléchargez les fichiers d'extension Always Disable Content-Security-Policy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Always Disable Content-Security-Policy Always Disable Content-Security-Policy
ID ffelghdomoehpceihalcnbmnodohkibj
URL Officiel https://chromewebstore.google.com/detail/always-disable-content-se/ffelghdomoehpceihalcnbmnodohkibj
Description Always Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.
Taille du Fichier 13.2 KB
Nombre d'Installations 13,028
Version Actuelle 1.0.7
Dernière Mise à Jour 2020-01-10
Date de Publication 2020-01-10
Évaluation 3.64/5 Total 14 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}