Web Rewriter

Create rules to rewrite network traffic

Web Rewriter란 무엇입니까?

Web Rewriter은(는) https://jottocraft.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create rules to rewrite network traffic"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Web Rewriter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Web Rewriter is a development tool that allows you to intercept and modify API requests (XMLHttpRequest, fetch, and WebSocket messages) for debugging and testing.                    

확장 프로그램 기본 정보

이름 Web Rewriter Web Rewriter
ID mofnjmjakjkabbjmhdhcaklpfpodjjem
공식 URL https://chromewebstore.google.com/detail/web-rewriter/mofnjmjakjkabbjmhdhcaklpfpodjjem
설명 Create rules to rewrite network traffic
파일 크기 79.06 KB
설치 횟수 31
현재 버전 4.0.1
최근 업데이트 2022-08-30
출시 날짜 2021-04-12
평점 5.00/5 총 1 개의 평점
개발자 https://jottocraft.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://rewrite.jottocraft.com
도움말 페이지 URL https://jottocraft.com/feedback
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
    "manifest_version": 3,
    "name": "Web Rewriter",
    "description": "Create rules to rewrite network traffic",
    "version": "4.0.1",
    "homepage_url": "https:\/\/rewrite.jottocraft.com",
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/rewrite.jottocraft.com\/*",
                "https:\/\/satella.staging.hq.jottocraft.com\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "hook.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/rewrite.jottocraft.com\/*",
            "https:\/\/satella.staging.hq.jottocraft.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    },
    "background": {
        "service_worker": "worker.js"
    },
    "permissions": [
        "storage"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlAxaAL8e1cwtp52mL231vLAb87oxOhjxaYLXmvmHz7BsQzFuvBzYyHpErzEvWEmpJZ\/X56RABZggrEE11XgnRxLNcGyUuqL3pNlOcutrSN3\/5452IBKscX5Qh8VWJ6MG6K+cPek3CvC2Rerd0ywJkz7kj4GCI1b0dQET9pJjMWgNX+O0X4rY7Lsaofurtc6PHjFQBYXxWQoizvYiVm6bc6HnfG6Eyf2nyu3+FNW5nAcBmLBMBCy7UWnOAI5wIx8Ti4kjw9Pfy2Ha5ncIADwM9nIv42gIKI0E7t4+F81OJesYUWujpmTB2fmbwzLKMhnblWqi\/UFcelVAs5LagwBCgQIDAQAB"
}