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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Disable Content-Security-Policy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}