Feature Policy Control

Control Feature-Policy response headers.

Wat is Feature Policy Control?

Feature Policy Control is een Chrome-extensie ontwikkeld door Polywocker, en de belangrijkste functie is "Control Feature-Policy response headers.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Feature Policy Control

Download Feature Policy Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
Officiële URL https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Beschrijving Control Feature-Policy response headers.
Bestandsgrootte 17.75 KB
Aantal Installaties 32
Huidige Versie 0.2
Laatst Bijgewerkt 2022-02-14
Publicatiedatum 2020-05-16
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Polywocker
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/polywock/featurePolicyControl
Ondersteunde Talen 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"
    }
}