netmonitor

shows network usage of webpages when the browser doesn't

netmonitorคืออะไร?

netmonitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "shows network usage of webpages when the browser doesn't"

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

screenshot

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

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

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

                        The "loading" icon for tabs in browsers only spins at first when the page is loaded. But even after that, web pages can do network IO via JavaScript in background without the user knowing. This extension highlights such network activity and shows a count of requests done till now by the page in a small indicator. It's updated in real-time for each tab.

A lot of web pages use background network requests for tracking user actions and sending data to remote servers, lazily loading heavy assets etc., and all that goes unnoticed by the user. Ideally, the browser's "loading icon" should spin for those requests as well.

Uploaded to my account by request of the author.  Go star his GitHub project here: https://github.com/awalGarg/netmonitor                    

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

ชื่อ netmonitor netmonitor
ID jekcpjegemgakiacfgiplacomhabclce
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce
คำอธิบาย shows network usage of webpages when the browser doesn't
ขนาดไฟล์ 92.13 KB
จำนวนการติดตั้ง 963
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2016-07-09
วันที่เผยแพร่ 2016-07-09
คะแนน 3.63/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/awalGarg/netmonitor
URL หน้าช่วยเหลือ https://github.com/awalGarg/netmonitor/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "netmonitor",
    "description": "shows network usage of webpages when the browser doesn't",
    "version": "0.0.4",
    "background": {
        "scripts": [
            "static\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "static\/off.png",
        "default_popup": "static\/popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "static\/off.png",
        "static\/on.gif"
    ]
}