ModifyAjaxResponse

Modify response text of ajax requests

ما هو ModifyAjaxResponse؟

ModifyAjaxResponse هو إضافة Chrome تم تطويرها بواسطة opponic، والميزة الرئيسية لها هي "Modify response text of ajax requests".

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

screenshot

تحميل ملف CRX للإضافة ModifyAjaxResponse

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

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

                        This extension only overrides the response data in the XMLHTTPRequest object as well as the fetch method. The real response which you can see in DevTools Network panel will not be modified

https://github.com/oppoic/ModifyAjaxResponse                    

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

الاسم ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
عنوان URL الرسمي https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
الوصف Modify response text of ajax requests
حجم الملف 94.91 KB
عدد التثبيتات 96
النسخة الحالية 1.6.0
آخر تحديث 2023-11-09
تاريخ النشر 2023-06-17
تقييم 5.00/5 مجموع تقييمات 1
المطور opponic
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/oppoic/ModifyAjaxResponse
عنوان صفحة المساعدة https://github.com/oppoic/ModifyAjaxResponse/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ModifyAjaxResponse",
    "description": "Modify response text of ajax requests",
    "version": "1.6.0",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/dist\/pageInjectScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}