Content Security Policy Override
Modify the Content Security Policy of web pages.
Что такое Content Security Policy Override?
Content Security Policy Override - это расширение Chrome, разработанное https://rufflewind.com, и его основная функция - "Modify the Content Security Policy of web pages.".
Снимки экрана расширения
Скачать файл CRX расширения Content Security Policy Override
Скачайте файлы расширений Content Security Policy Override в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows the user to modify the Content Security Policy (CSP) of web pages.
Warning: improper use of this add-on can diminish the security of your browser. Do not use unless you really know what you're doing.
To edit the configuration, go to chrome://extensions and click Options under Content Security Policy Override.
The text area in the Options will automatically save as you edit.
Bugs should be reported here: https://github.com/Rufflewind/chrome_cspmod/issues Основная информация о расширении
| Название | |
| ID | lhieoncdgamiiogcllfmboilhgoknmpi |
| Официальный URL | https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi |
| Описание | Modify the Content Security Policy of web pages. |
| Размер файла | 13.54 KB |
| Количество установок | 2,934 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2018-06-16 |
| Дата публикации | 2018-06-15 |
| Рейтинг | 4.22/5 Всего 9 оценок |
| Разработчик | https://rufflewind.com |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Rufflewind/chrome_cspmod |
| URL страницы помощи | https://github.com/Rufflewind/chrome_cspmod/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.2.0",
"name": "Content Security Policy Override",
"description": "Modify the Content Security Policy of web pages.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*:\/\/*\/"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
}
} | |