Cyber-Ark Clipboard Extension
Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.
Τι είναι το Cyber-Ark Clipboard Extension;
Το Cyber-Ark Clipboard Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cyberark.developer, και η κύρια λειτουργία του είναι "Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Cyber-Ark Clipboard Extension
Λήψη αρχείων επέκτασης Cyber-Ark Clipboard Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows the CyberArk Password Vault Web Access to access a user’s clipboard. For security reasons, some browsers prevent programmatic access to the clipboard. This prevents CyberArk Password Vault Web Access users from being able to copy account content when needed. The CyberArk Password Vault Web Access Clipboard extension enables CyberArk Password Vault Web Access users to continue to copy and paste from the clipboard. Please note that clipboard content will be deleted after 25 seconds, or when the user signs out in order to make sure account content is not kept in the clipboard. This extension is supported in CyberArk Password Vault Web Access versions earlier than 12.0. It is not supported in versions 12.0 or later. Use of this extension is governed by the following license terms: https://www.cyberark.com/EULA.pdf. Please see the section describing free of charge software (“Free Trial or Beta Versions of the Software”).
Βασικές Πληροφορίες Επέκτασης
Όνομα | Cyber-Ark Clipboard Extension |
ID | ndaciljfdnekbnmcpjidoebejglcjidc |
Επίσημο URL | https://chromewebstore.google.com/detail/cyber-ark-clipboard-exten/ndaciljfdnekbnmcpjidoebejglcjidc |
Περιγραφή | Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved. |
Μέγεθος Αρχείου | 25.24 KB |
Αριθμός Εγκαταστάσεων | 1,625,868 |
Τρέχουσα Έκδοση | 2.1 |
Τελευταία Ενημέρωση | 2023-11-27 |
Ημερομηνία Δημοσίευσης | 2018-08-28 |
Αξιολόγηση | 4.17/5 Συνολικά 18 Αξιολογήσεις |
Προγραμματιστής | cyberark.developer |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.cyberark.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.cyberark.com/customer-support/ |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cyber-Ark Clipboard Extension", "version": "2.1", "description": "Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.", "background": { "page": "background.html", "persistent": false }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite" ], "content_security_policy": "default-src 'self'", "icons": { "48": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "clipboardextensionchrome.js" ] } ] } |