Feature Policy Control
Control Feature-Policy response headers.
ما هو Feature Policy Control؟
Feature Policy Control هو إضافة Chrome تم تطويرها بواسطة Polywocker، والميزة الرئيسية لها هي "Control Feature-Policy response headers.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Feature Policy Control
قم بتنزيل ملفات الامتداد Feature Policy Control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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"
}
} | |