Feature Policy Control

Control Feature-Policy response headers.

What is Feature Policy Control?

Feature Policy Control is a Chrome extension developed by Polywocker, and its main feature is "Control Feature-Policy response headers.".

Extension Screenshots

screenshot
screenshot

Download Feature Policy Control Extension CRX File

Download Feature Policy Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
Official URL https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Description Control Feature-Policy response headers.
File Size 17.75 KB
Installation Count 32
Current Version 0.2
Last Updated 2022-02-14
Publish Date 2020-05-16
Rating 5.00/5 Total 1 Ratings
Developer Polywocker
Email [email protected]
Payment Type free
Extension Website https://github.com/polywock/featurePolicyControl
Supported Languages 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"
    }
}