Diver - Web Traffic Monitor Tool
Monitor requests based on the your own rules and perform custom processing on them.
Qu'est-ce que Diver - Web Traffic Monitor Tool ?
Diver - Web Traffic Monitor Tool est une extension Chrome développée par Lawrence Lau, et sa fonction principale est "Monitor requests based on the your own rules and perform custom processing on them.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Diver - Web Traffic Monitor Tool
Téléchargez les fichiers d'extension Diver - Web Traffic Monitor Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Diver - Web Traffic Monitor Tool |
ID | ompelnpholagcjdmfomlhbmmmaneholh |
URL Officiel | 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. |
Taille du Fichier | 514 KB |
Nombre d'Installations | 998 |
Version Actuelle | 2.0.2 |
Dernière Mise à Jour | 2019-03-08 |
Date de Publication | 2019-03-08 |
Évaluation | 2.50/5 Total 2 Évaluations |
Développeur | Lawrence Lau |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lalau/diver-docs/blob/master/diver.md |
URL de la Page d'Aide | https://github.com/lalau/diver-docs/blob/master/diver.md |
Langues Prises en Charge | 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" } |