simple-modify-headers

Simple Modify headers

ما هو simple-modify-headers؟

simple-modify-headers هو إضافة Chrome تم تطويرها بواسطة didierfred، والميزة الرئيسية لها هي "Simple Modify headers".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة simple-modify-headers

قم بتنزيل ملفات الامتداد simple-modify-headers بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The extension rewrite the headers based on a rules table.

It's possible to:

    add , modify or delete header field for HTTP(S) request or response
    export the configuration in a file (json format)
    import the configuration from a file 
    choose urls on which the modifications applies 

In order to work, the following extension permissions are needed :

    storage : needed to store the configuration 
    activeTab, tabs : needed to show the configuration screen in the browser tab.
    webRequest,webRequestBlocking, : needed to modify the headers

More information on https://github.com/didierfred/SimpleModifyHeaders

The code is opensource under Mozilla Public License 2.0                    

معلومات أساسية عن التمديد

الاسم simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
عنوان URL الرسمي https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
الوصف Simple Modify headers
حجم الملف 139 KB
عدد التثبيتات 14,752
النسخة الحالية 1.8.1
آخر تحديث 2022-03-15
تاريخ النشر 2019-09-17
تقييم 4.50/5 مجموع تقييمات 12
المطور didierfred
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
عنوان صفحة المساعدة https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Simple Modify headers ",
    "manifest_version": 2,
    "name": "simple-modify-headers",
    "version": "1.8.1",
    "homepage_url": "https:\/\/github.com\/didierfred\/SimpleModifyHeaders",
    "icons": {
        "48": "icons\/modify-48.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/modify-32.png",
        "default_title": "Simple Modify Headers",
        "default_popup": "popup\/menu.html"
    }
}