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是由cyberark.developer開發的Chrome擴展程式,該擴展的主要功能是“Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.”。

擴展截圖

screenshot
screenshot

下載Cyber-Ark Clipboard Extension擴展crx文件

下載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 Cyber-Ark Clipboard Extension
ID ndaciljfdnekbnmcpjidoebejglcjidc
官方網址 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"
            ]
        }
    ]
}