Feature Policy Control
Control Feature-Policy response headers.
Was ist Feature Policy Control?
Feature Policy Control ist eine Chrome-Erweiterung, die von Polywocker entwickelt wurde, und ihr Hauptmerkmal ist "Control Feature-Policy response headers.".
Erweiterungsscreenshots
Feature Policy Control-Erweiterungs-CRX-Datei herunterladen
Laden Sie Feature Policy Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | gnhcejibdkgceebbeljdolienjplkpin | 
| Offizielle URL | https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin | 
| Beschreibung | Control Feature-Policy response headers. | 
| Dateigröße | 17.75 KB | 
| Installationsanzahl | 32 | 
| Aktuelle Version | 0.2 | 
| Letztes Update | 2022-02-14 | 
| Veröffentlichungsdatum | 2020-05-16 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | Polywocker | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/polywock/featurePolicyControl | 
| Unterstützte Sprachen | 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"
    }
}  |  |