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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
            ]
        }
    ]
}