Net logs

Extendable network logs debugger

Net logsคืออะไร?

Net logs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dg.danis.gumerov และคุณลักษณะหลักของมันคือ "Extendable network logs debugger"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This is extendable network request viewer extension for Chromium-based browsers.

You can change the way you view parameters and results the way you want, using plain JavaScript.

The extension will appear in Devtools as a "📜 Net logs" tab.

Features:

* 🔍 Search: Filter by ULR and search by params/result.
* ⛰️ Integration: View Next.js & NuxtJS hydration state.
* 🎨 Presets: GraphQL & JSON-RPC protocols unpacking.
* 🛠️ Customization: Transform name, parameters, and response with JavaScript.
* ✨ Universal: View live logs or load from HAR/*.netlogs.zip file.
* 🤝 Team-friendly: Export logs and share them with others.

Source code and extensive readme can be found at:
https://github.com/Artboomy/netlogs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Net logs Net logs
ID cjdmhjppaehhblekcplokfdhikmalnaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/net-logs/cjdmhjppaehhblekcplokfdhikmalnaf
คำอธิบาย Extendable network logs debugger
ขนาดไฟล์ 322 KB
จำนวนการติดตั้ง 141
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2024-03-03
วันที่เผยแพร่ 2021-04-25
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา dg.danis.gumerov
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Artboomy/netlogs
URL หน้าช่วยเหลือ https://github.com/Artboomy/netlogs/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Net logs",
    "version": "1.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "description": "Extendable network logs debugger",
    "devtools_page": "devtools.html",
    "author": "artboomy",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html",
            "sandboxSettings.html"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/github.com\/Artboomy\/netlogs",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}