Web Rewriter

Create rules to rewrite network traffic

Web Rewriterคืออะไร?

Web Rewriter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jottocraft.com และคุณลักษณะหลักของมันคือ "Create rules to rewrite network traffic"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Rewriter

ดาวน์โหลดไฟล์ส่วนขยาย Web Rewriter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}