Content Security Policy Override
Modify the Content Security Policy of web pages.
什么是Content Security Policy Override?
Content Security Policy Override是由https://rufflewind.com开发的Chrome扩展程序,该扩展的主要功能是“Modify the Content Security Policy of web pages.”。
扩展截图
下载Content Security Policy Override扩展crx文件
下载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
}
} | |