Diver - Web Traffic Monitor Tool

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

Was ist Diver - Web Traffic Monitor Tool?

Diver - Web Traffic Monitor Tool ist eine Chrome-Erweiterung, die von Lawrence Lau entwickelt wurde, und ihr Hauptmerkmal ist "Monitor requests based on the your own rules and perform custom processing on them.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Diver - Web Traffic Monitor Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Diver - Web Traffic Monitor Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Diver - Web Traffic Monitor Tool Diver - Web Traffic Monitor Tool
ID ompelnpholagcjdmfomlhbmmmaneholh
Offizielle URL https://chromewebstore.google.com/detail/diver-web-traffic-monitor/ompelnpholagcjdmfomlhbmmmaneholh
Beschreibung Monitor requests based on the your own rules and perform custom processing on them.
Dateigröße 514 KB
Installationsanzahl 998
Aktuelle Version 2.0.2
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler Lawrence Lau
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lalau/diver-docs/blob/master/diver.md
Hilfeseite URL https://github.com/lalau/diver-docs/blob/master/diver.md
Unterstützte Sprachen 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"
}