Feature Policy Control

Control Feature-Policy response headers.

Feature Policy Control là gì?

Feature Policy Control là một tiện ích mở rộng Chrome được phát triển bởi Polywocker, và tính năng chính của nó là "Control Feature-Policy response headers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feature Policy Control

Tải xuống các tệp mở rộng Feature Policy Control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
URL Chính Thức https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Mô tả Control Feature-Policy response headers.
Kích Thước Tệp 17.75 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2020-05-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Polywocker
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/polywock/featurePolicyControl
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}