Feature Policy Control

Control Feature-Policy response headers.

Feature Policy Controlとは何ですか?

Feature Policy ControlはPolywockerによって開発されたChromeの拡張機能で、その主な機能は「Control Feature-Policy response headers.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
公式URL 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
Eメール [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"
    }
}