Diver - Web Traffic Monitor Tool

Monitor requests based on the your own rules and perform custom processing on them.

什麼是Diver - Web Traffic Monitor Tool?

Diver - Web Traffic Monitor Tool是由Lawrence Lau開發的Chrome擴展程式,該擴展的主要功能是“Monitor requests based on the your own rules and perform custom processing on them.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Diver - Web Traffic Monitor Tool擴展crx文件

下載Diver - Web Traffic Monitor Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Diver is a Chrome extension that allows you to monitor the network requests on a web page. While the browser's network panel provides general information of these requests, Diver's purpose is to monitor specific requests based on the rules set by the user and perform custom processing to present them in a manageable and readable format. In summary, the features include:

* Setup request profile to specify what requests to monitor
* Custom processing of requests to generate a data representation
* Select what data to manage in the request profile
* Export and import request profile to share the monitoring with others

For more information: https://github.com/lalau/diver-docs/blob/master/diver.md                    

擴展基本資訊

名稱 Diver - Web Traffic Monitor Tool Diver - Web Traffic Monitor Tool
ID ompelnpholagcjdmfomlhbmmmaneholh
官方網址 https://chromewebstore.google.com/detail/diver-web-traffic-monitor/ompelnpholagcjdmfomlhbmmmaneholh
簡介 Monitor requests based on the your own rules and perform custom processing on them.
檔案大小 514 KB
安裝次數 998
目前版本 2.0.2
更新時間 2019-03-08
上架時間 2019-03-08
評分 2.50/5 共 2 次評分
開發者 Lawrence Lau
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/lalau/diver-docs/blob/master/diver.md
說明頁面URL https://github.com/lalau/diver-docs/blob/master/diver.md
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Diver - Web Traffic Monitor Tool",
    "version": "2.0.2",
    "description": "Monitor requests based on the your own rules and perform custom processing on them.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "author": "lalau",
    "background": {
        "page": "eventpage.html",
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "devtools_page": "devtools.html",
    "minimum_chrome_version": "57",
    "permissions": [
        "activeTab",
        "storage",
        "downloads",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html",
            "processor.html"
        ]
    },
    "short_name": "Diver"
}