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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}