NX Enhanced
Adds quality-of-life features to NextDNS website for a more practical usability
Τι είναι το NX Enhanced;
Το NX Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BLBC, και η κύρια λειτουργία του είναι "Adds quality-of-life features to NextDNS website for a more practical usability".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NX Enhanced
Λήψη αρχείων επέκτασης NX Enhanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Current features: Logs page: ---------------- * Allow/Deny buttons in the logs that make it possible to add an exception or block a domain without needing to copy, switch pages, and paste * Specify domains that should be hidden from the logs, enabling you to filter out noisy or irrelevant domains * Ability to load only the logs that happened before a specified date-time * Option to show only queries from unnamed devices * Refine a search with multiple search terms or exclusion terms * An option to show the number of entries currently loaded, either visible or hidden by filters * Show the query's absolute time (HH:MM:SS) along with the relative time ("a minute ago", "few seconds ago") * Relative time that counts minutes, then hours, and goes up to "Yesterday" * A refresh button Allowlist/Denylist pages: ---------------- * Add a description for each domain in the allow/denylists * Add a list of domains, instead of one by one * Sort the allow/deny lists alphabetically * Styling options for the domains for an easier quick reading, such as: lighten subdomains, bold root domain and right-align Settings page: ---------------- * Ability to export/import all settings from/to a config Privacy page: ---------------- * Collapse the list of blocklists enabled and adds a button to expand them if needed * Sort alphabetically the list of blocklists in the "Add a blocklist" screen Security page: ---------------- * Collapse the list of added TLDs and adds a button to expand them if needed * A button that allows you to add every TLD in the "Add a TLD" screen in one click
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ljimbekophocjbnphldoaidgkkaojcfo |
Επίσημο URL | https://chrome.google.com/webstore/detail/nx-enhanced/ljimbekophocjbnphldoaidgkkaojcfo |
Περιγραφή | Adds quality-of-life features to NextDNS website for a more practical usability |
Μέγεθος Αρχείου | 32.98 KB |
Αριθμός Εγκαταστάσεων | 1,456 |
Τρέχουσα Έκδοση | 5.1 |
Τελευταία Ενημέρωση | 2023-03-25 |
Ημερομηνία Δημοσίευσης | 2021-03-08 |
Αξιολόγηση | 4.67/5 Συνολικά 15 Αξιολογήσεις |
Προγραμματιστής | BLBC |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/hjk789/NXEnhanced |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/hjk789/NXEnhanced/issues |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NX Enhanced", "version": "5.1", "description": "Adds quality-of-life features to NextDNS website for a more practical usability", "icons": { "128": "icon.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/my.nextdns.io\/*", "https:\/\/api.nextdns.io\/*" ], "js": [ "utils.js", "NXEnhanced.js" ] } ], "options_ui": { "page": "options-page.html" }, "browser_action": { "default_title": "NX Enhanced", "default_icon": "icon.png", "default_popup": "popup.html" } } |