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 là gì?

Cyber-Ark Clipboard Extension là một tiện ích mở rộng Chrome được phát triển bởi cyberark.developer, và tính năng chính của nó là "Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cyber-Ark Clipboard Extension

Tải xuống các tệp mở rộng Cyber-Ark Clipboard Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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”).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cyber-Ark Clipboard Extension Cyber-Ark Clipboard Extension
ID ndaciljfdnekbnmcpjidoebejglcjidc
URL Chính Thức https://chromewebstore.google.com/detail/cyber-ark-clipboard-exten/ndaciljfdnekbnmcpjidoebejglcjidc
Mô tả Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.
Kích Thước Tệp 25.24 KB
Số Lần Cài Đặt 1,625,868
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2023-11-27
Ngày Phát Hành 2018-08-28
Đánh Giá 4.17/5 Tổng số 18 Đánh Giá
Nhà Phát Triển cyberark.developer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.cyberark.com
URL Trang Trợ Giúp https://www.cyberark.com/customer-support/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}