Disable-CSP

A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

ما هو Disable-CSP؟

Disable-CSP هو إضافة Chrome تم تطويرها بواسطة lisonge، والميزة الرئيسية لها هي "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Disable-CSP

قم بتنزيل ملفات الامتداد Disable-CSP بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

In the process of website development and testing, we inevitably need to inject cross-domain resources into some websites, but Content-Security-Policy prevents this. So you can use this extension to disable Content-Security-Policy so that you have a better development experience

- disable http header csp
- disable html meta csp (must open devtools)

source code https://github.com/lisonge/Disable-CSP                    

معلومات أساسية عن التمديد

الاسم Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
عنوان URL الرسمي https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
الوصف A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
حجم الملف 34.07 KB
عدد التثبيتات 261
النسخة الحالية 1.0.3
آخر تحديث 2023-09-10
تاريخ النشر 2023-07-24
المطور lisonge
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lisonge/Disable-CSP
عنوان صفحة المساعدة https://github.com/lisonge/Disable-CSP/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable-CSP",
    "version": "1.0.3",
    "author": "lisonge",
    "homepage_url": "https:\/\/github.com\/lisonge\/Disable-CSP",
    "description": "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy",
    "icons": {
        "128": "src\/assets\/icon-128.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "debugger",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "128": "src\/assets\/icon-128.png"
        }
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "devtools_page": "html\/devtools.html"
}