Feature Policy Control
Control Feature-Policy response headers.
Vad är Feature Policy Control?
Feature Policy Control är en Chrome-tillägg utvecklad av Polywocker, och dess huvudfunktion är "Control Feature-Policy response headers.".
Tilläggsskärmbilder
Ladda ner Feature Policy Control-förlängningens CRX-fil
Ladda ner Feature Policy Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Feature Policy Control |
ID | gnhcejibdkgceebbeljdolienjplkpin |
Officiell webbadress | https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin |
Beskrivning | Control Feature-Policy response headers. |
Filstorlek | 17.75 KB |
Antal Installationer | 32 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2022-02-14 |
Publiceringsdatum | 2020-05-16 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Polywocker |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/polywock/featurePolicyControl |
Stödda Språk | 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" } } |