Feature Policy Control
Control Feature-Policy response headers.
什么是Feature Policy Control?
Feature Policy Control是由Polywocker开发的Chrome扩展程序,该扩展的主要功能是“Control Feature-Policy response headers.”。
扩展截图
下载Feature Policy Control扩展crx文件
下载Feature Policy Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Override Feature-Policy response headers depending on the URL.
Use cases
- Bypass Picture-in-Picture blocking.
- Testing and more.
If it doesn't work, try disabling other extensions. Only one extension can modify response headers.
Source code: https://github.com/polywock/featurePolicyControl 扩展基本信息
| 名称 | |
| ID | gnhcejibdkgceebbeljdolienjplkpin |
| 官方URL | https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin |
| 简介 | Control Feature-Policy response headers. |
| 文件大小 | 17.75 KB |
| 安装次数 | 32 |
| 当前版本 | 0.2 |
| 更新时间 | 2022-02-14 |
| 上架时间 | 2020-05-16 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Polywocker |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/polywock/featurePolicyControl |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Feature Policy Control",
"version": "0.2",
"description": "Control Feature-Policy response headers.",
"manifest_version": 2,
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"128": "icon128.png"
},
"background": {
"scripts": [
"common.js",
"background.js"
]
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
}
} | |