Feature Policy Control

Control Feature-Policy response headers.

Feature Policy Controlคืออะไร?

Feature Policy Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Polywocker และคุณลักษณะหลักของมันคือ "Control Feature-Policy response headers."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feature Policy Control

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}