Diver - Web Traffic Monitor Tool
Monitor requests based on the your own rules and perform custom processing on them.
What is Diver - Web Traffic Monitor Tool?
Diver - Web Traffic Monitor Tool is a Chrome extension developed by Lawrence Lau, and its main feature is "Monitor requests based on the your own rules and perform custom processing on them.".
Extension Screenshots
Download Diver - Web Traffic Monitor Tool Extension CRX File
Download Diver - Web Traffic Monitor Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Diver - Web Traffic Monitor Tool |
ID | ompelnpholagcjdmfomlhbmmmaneholh |
Official URL | https://chromewebstore.google.com/detail/diver-web-traffic-monitor/ompelnpholagcjdmfomlhbmmmaneholh |
Description | Monitor requests based on the your own rules and perform custom processing on them. |
File Size | 514 KB |
Installation Count | 998 |
Current Version | 2.0.2 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 2.50/5 Total 2 Ratings |
Developer | Lawrence Lau |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lalau/diver-docs/blob/master/diver.md |
Help Page URL | https://github.com/lalau/diver-docs/blob/master/diver.md |
Supported Languages | 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" } |