Feature Policy Control

Control Feature-Policy response headers.

Apa itu Feature Policy Control?

Feature Policy Control adalah ekstensi Chrome yang dikembangkan oleh Polywocker, dan fitur utamanya adalah "Control Feature-Policy response headers.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Feature Policy Control

Unduh file ekstensi Feature Policy Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Feature Policy Control Feature Policy Control
ID gnhcejibdkgceebbeljdolienjplkpin
URL Resmi https://chromewebstore.google.com/detail/feature-policy-control/gnhcejibdkgceebbeljdolienjplkpin
Deskripsi Control Feature-Policy response headers.
Ukuran File 17.75 KB
Jumlah Instalasi 32
Versi Saat Ini 0.2
Terakhir Diperbarui 2022-02-14
Tanggal Publikasi 2020-05-16
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Polywocker
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/polywock/featurePolicyControl
Bahasa yang Didukung 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"
    }
}