Ajax Modifier

To modify ajax responses on any page

Ajax Modifier란 무엇입니까?

Ajax Modifier은(는) ygyooo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "To modify ajax responses on any page"입니다.

확장 프로그램 스크린샷

screenshot

Ajax Modifier 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}