Feature Policy Control
Control Feature-Policy response headers.
什麼是Feature Policy Control?
Feature Policy Control是由Polywocker開發的Chrome擴展程式,該擴展的主要功能是“Control Feature-Policy response headers.”。
擴展截圖
下載Feature Policy Control擴展crx文件
下載Feature Policy Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Feature Policy Control |
ID | gnhcejibdkgceebbeljdolienjplkpin |
官方網址 | https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin |
簡介 | Control Feature-Policy response headers. |
檔案大小 | 17.75 KB |
安裝次數 | 32 |
目前版本 | 0.2 |
更新時間 | 2022-02-14 |
上架時間 | 2020-05-16 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Polywocker |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/polywock/featurePolicyControl |
支援的語言 | 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" } } |