DatAnswers Chrome Local File Opener
Open files on your local area network using Chrome
Τι είναι το DatAnswers Chrome Local File Opener;
Το DatAnswers Chrome Local File Opener είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον varonis.com, και η κύρια λειτουργία του είναι "Open files on your local area network using Chrome".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DatAnswers Chrome Local File Opener
Λήψη αρχείων επέκτασης DatAnswers Chrome Local File Opener σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
DatAnswers is an enterprise search engine that enables users to search the organization's Varonis-monitored file systems for the data they need, providing information governance for administrators, and compliance and legal officers. DatAnswers leverages the power and security of the Varonis classification engine to index a company's data and provide relevant search results. The results displayed in the application contain UNC links to the files that match the search criteria. Chrome’s default behavior prevents users from opening files in UNC format (that is, file://FileServer/share/filename). This extension enables authorized DatAnswers users to open files and folders in UNC format through the DatAnswers search engine. When a link is clicked, the extension verifies whether that link is valid and generated by DatAnswers and then opens it in a new browser tab.
Βασικές Πληροφορίες Επέκτασης
Όνομα | DatAnswers Chrome Local File Opener |
ID | dehljiokopflpeffddpbklhfohffnchh |
Επίσημο URL | https://chromewebstore.google.com/detail/datanswers-chrome-local-f/dehljiokopflpeffddpbklhfohffnchh |
Περιγραφή | Open files on your local area network using Chrome |
Μέγεθος Αρχείου | 71.54 KB |
Αριθμός Εγκαταστάσεων | 3,703 |
Τρέχουσα Έκδοση | 1.70 |
Τελευταία Ενημέρωση | 2023-12-14 |
Ημερομηνία Δημοσίευσης | 2020-03-18 |
Αξιολόγηση | 3.25/5 Συνολικά 16 Αξιολογήσεις |
Προγραμματιστής | varonis.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.varonis.com |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "manifest_version": 3, "name": "DatAnswers Chrome Local File Opener", "author": "Varonis", "short_name": "DatAnswers Chrome Local File Opener", "version": "1.70", "description": "Open files on your local area network using Chrome", "icons": { "16": "App_icon_16.png", "48": "App_icon_48.png", "128": "App_icon_128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery-1.4.2.min.js", "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "host_permissions": [ "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ { "resources": [ "extension.html", "App_icon*.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |