Ajax Modifier

To modify ajax responses on any page

Ajax Modifier क्या है?

Ajax Modifier ygyooo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "To modify ajax responses on any page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ajax Modifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        1. It is recommended to turn off this extension(the icon should be gray) when you are not using it.
2. This extension only overrides the response data in the XMLHTTPRequest object as well as the fetch method. The original response which you can see in DevTools' "Network" panel will not be modified.
github: https://github.com/YGYOOO/ajax-interceptor

你可以用该插件修改页面上Ajax请求的返回结果。
注意:
1. 当你不需要使用该插件时,建议把开关关上(插件icon变为灰色),以免对页面正常浏览造成影响。
2. 该插件只会在JS层面上对返回结果进行修改,即只会修改全局的XMLHTTPRequest对象和fetch方法里的返回值,进而影响页面展现。而你在chrome的devtools的network里看到的请求返回结果不会有任何变化。

github地址(欢迎star~):
https://github.com/YGYOOO/ajax-interceptor                    

एक्सटेंशन की मूल जानकारी

नाम Ajax Modifier Ajax Modifier
ID nhpjggchkhnlbgdfcbgpdpkifemomkpg
आधिकारिक URL https://chromewebstore.google.com/detail/ajax-modifier/nhpjggchkhnlbgdfcbgpdpkifemomkpg
विवरण To modify ajax responses on any page
फ़ाइल का आकार 2.08 MB
स्थापना संख्या 20,000
वर्तमान संस्करण 1.5.4
अंतिम अपडेट 2024-02-01
प्रकाशन तिथि 2019-12-23
रेटिंग 4.87/5 कुल 38 रेटिंग्स
डेवलपर ygyooo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/YGYOOO/ajax-interceptor
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ajax Modifier",
    "version": "1.5.4",
    "description": "To modify ajax responses on any page",
    "permissions": [
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "icons": {
        "16": "images\/16_gray.png",
        "32": "images\/32_gray.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "pageScripts\/defaultSettings.js",
                "pageScripts\/main.js",
                "iframe\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": [],
    "content_security_policy": [],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "devtools_page": "devtools.html"
}