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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
}