XHR Request Interceptor

Redirect XHR requests and change their headers

ما هو XHR Request Interceptor؟

XHR Request Interceptor هو إضافة Chrome تم تطويرها بواسطة gabriel.annell، والميزة الرئيسية لها هي "Redirect XHR requests and change their headers".

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

screenshot

تحميل ملف CRX للإضافة XHR Request Interceptor

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

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

                        Redirect XHR requests and modify headers from any front-end application to wherever you want!

Easy to use interface and supports regex (RE2).

Especially useful for full-stack devs: Redirect from any environment to test your back-end developments.                    

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

الاسم XHR Request Interceptor XHR Request Interceptor
ID mkmcbagfkbbbkdcapjmaghhgbenmielk
عنوان URL الرسمي https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk
الوصف Redirect XHR requests and change their headers
حجم الملف 574 KB
عدد التثبيتات 101
النسخة الحالية 1.0.0
آخر تحديث 2023-05-12
تاريخ النشر 2022-03-22
المطور gabriel.annell
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/LGabAnnell/xhr-request-interceptor
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XHR Request Interceptor",
    "description": "Redirect XHR requests and change their headers",
    "version": "1.0.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Edit rules"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}