Clipboard Permission Manager

Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.

Clipboard Permission Manager란 무엇입니까?

Clipboard Permission Manager은(는) https://glyptodon.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API."입니다.

확장 프로그램 스크린샷

screenshot

Clipboard Permission Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Clipboard Permission Manager is a browser extension which allows users to grant JavaScript access to the clipboard on a per-page basis. It should work with any page that uses the W3C Clipboard API.

Chrome restricts clipboard access to very specific cases, each of which requires user interaction, and does not provide a mechanism for manually granting access such that user interaction is not required going forward.

This extension is intended to provide such a mechanism, and it is our hope that mainstream browsers will provide such a mechanism on their own in the future, rendering this extension unnecessary.

This extension is open source and licensed under the MIT license. Its source code can be found on GitHub:

https://github.com/glyptodon/clipboard-permission-manager                    

확장 프로그램 기본 정보

이름 Clipboard Permission Manager Clipboard Permission Manager
ID ipbhneeanpgkaleihlknhjiaamobkceh
공식 URL https://chromewebstore.google.com/detail/clipboard-permission-mana/ipbhneeanpgkaleihlknhjiaamobkceh
설명 Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.
파일 크기 30.35 KB
설치 횟수 10,000
현재 버전 0.4
최근 업데이트 2018-05-03
출시 날짜 2018-05-02
평점 2.87/5 총 15 개의 평점
개발자 https://glyptodon.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/glyptodon/clipboard-permission-manager
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Permission Manager",
    "version": "0.4",
    "description": "Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.",
    "icons": {
        "16": "icons\/clipboard-allow-16.png",
        "32": "icons\/clipboard-allow-32.png",
        "48": "icons\/clipboard-allow-48.png",
        "64": "icons\/clipboard-allow-64.png",
        "128": "icons\/clipboard-allow-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "private\/background\/clipboardService.js",
            "private\/background\/popupService.js"
        ]
    },
    "page_action": {
        "default_popup": "private\/popup\/popup.html",
        "default_icon": {
            "19": "private\/popup\/icons\/clipboard-maybe-19.png",
            "38": "private\/popup\/icons\/clipboard-maybe-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "private\/content\/init.js",
                "private\/content\/clipboardBroker.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "public\/execCommand.js"
    ]
}