Chrome Response Override

Provides support to override API/HTML/* response using simple Find & Replace steps. No external app installation required

Chrome Response Override란 무엇입니까?

Chrome Response Override은(는) Pasupathi Rajamanickam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides support to override API/HTML/* response using simple Find & Replace steps. No external app installation required"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chrome Response Override 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # chrome-response-override
Chrome devtools extension to modify response on the fly, no external app installation required.

Provide support to override API/HTML/* response using simple Find & Replace steps. No external app installation required.

Steps to override response body in chrome extension

1) Open devtools, navigate to "Response Override" tab 
2) Click "Add Row"
3) Enter URL contains value only this URL response will be modified. If you want to modify URL in home page like www.example.com and no URI Path, use Special variable called ~NO_URI~ in URL contains field.
4) Enter Find value It's a javascript regex pattern. 
5) Enter Replace value to replace with. No need to provide content-type
6) Click "Save" to save everything.
7) Click "Play" button to start modifying response.
8) You must click pause button to stop this modification.
9) You must keep this devtools open
10) Issue with the override, either open private tab with only this plugin enabled in private tab or please try disabling other plugins working with network, like request header modifier and run this plugin again. If the other plugins using old network API may affect this plugin

Ex. 
If you want to add new node in json. 
Find: "existingNode":"existingValue" 
Replace: "existingNode":"existingValue", "newNode": "newValue"

If you want to modify URL in home page like on www.example.com page and no URI Path, use Special variable called ~NO_URI~ in URL contains field.

Special Variable
1. If you put "~NO_API~" (without ") in Find, no remote call will be made, provide full response. Provide content-type in this case.
2. If you want to modify URL in home page like on www.example.com page and no URI Path, use Special variable called ~NO_URI~ in URL contains field.

How This works: This devtools extension add network break point and listen to URL contains the user input Make API Client call and get response. Do Find and Replace on top of response. Serve the replaced response.

New on V1.7:
1.Moving away from chrome.tabs.getSelected to chrome.tabs.query
New on V1.6:
1. Fix using "/" in URL contains breaking page. Instead please use ~NO_URI~


Project space: https://github.com/Pasupathi-Rajamanickam/chrome-response-override                    

확장 프로그램 기본 정보

이름 Chrome Response Override Chrome Response Override
ID kbipbobgpnhgghikihmodppmfbkbmgfj
공식 URL https://chromewebstore.google.com/detail/chrome-response-override/kbipbobgpnhgghikihmodppmfbkbmgfj
설명 Provides support to override API/HTML/* response using simple Find & Replace steps. No external app installation required
파일 크기 488 KB
설치 횟수 3,626
현재 버전 1.8
최근 업데이트 2022-06-24
출시 날짜 2020-04-11
평점 2.27/5 총 15 개의 평점
개발자 Pasupathi Rajamanickam
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/Pasupathi-Rajamanickam/chrome-response-override/wiki/Privacy-Policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Response Override",
    "short_name": "Chrome Response Override",
    "version": "1.8",
    "description": "Provides support to override API\/HTML\/* response using simple Find & Replace steps. No external app installation required",
    "author": "Pasupathi Rajamanickam",
    "devtools_page": "devtools\/devtools.html",
    "permissions": [
        "debugger",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon.png"
    }
}