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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lawrence Lau, και η κύρια λειτουργία του είναι "Monitor requests based on the your own rules and perform custom processing on them.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Diver - Web Traffic Monitor Tool
Λήψη αρχείων επέκτασης 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 |
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" } |