Feature Policy Control

Control Feature-Policy response headers.

Qu'est-ce que Feature Policy Control ?

Feature Policy Control est une extension Chrome développée par Polywocker, et sa fonction principale est "Control Feature-Policy response headers.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Feature Policy Control

Téléchargez les fichiers d'extension Feature Policy Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
URL Officiel https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Description Control Feature-Policy response headers.
Taille du Fichier 17.75 KB
Nombre d'Installations 32
Version Actuelle 0.2
Dernière Mise à Jour 2022-02-14
Date de Publication 2020-05-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur Polywocker
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/polywock/featurePolicyControl
Langues Prises en Charge 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"
    }
}