Feature Policy Control

Control Feature-Policy response headers.

Cos'è Feature Policy Control?

Feature Policy Control è un'estensione di Chrome sviluppata da Polywocker, e la sua funzione principale è "Control Feature-Policy response headers.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Feature Policy Control

Scarica i file di estensione Feature Policy Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
URL Ufficiale https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Descrizione Control Feature-Policy response headers.
Dimensione del File 17.75 KB
Conteggio Installazioni 32
Versione Corrente 0.2
Ultimo Aggiornamento 2022-02-14
Data di Pubblicazione 2020-05-16
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Polywocker
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/polywock/featurePolicyControl
Lingue Supportate 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"
    }
}