Clipboard Permission Manager

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

Clipboard Permission Manager là gì?

Clipboard Permission Manager là một tiện ích mở rộng Chrome được phát triển bởi https://glyptodon.org, và tính năng chính của nó là "Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Clipboard Permission Manager

Tải xuống các tệp mở rộng Clipboard Permission Manager 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

                        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                    

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

Tên Clipboard Permission Manager Clipboard Permission Manager
ID ipbhneeanpgkaleihlknhjiaamobkceh
URL Chính Thức https://chromewebstore.google.com/detail/clipboard-permission-mana/ipbhneeanpgkaleihlknhjiaamobkceh
Mô tả Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.
Kích Thước Tệp 30.35 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2018-05-03
Ngày Phát Hành 2018-05-02
Đánh Giá 2.87/5 Tổng số 15 Đánh Giá
Nhà Phát Triển https://glyptodon.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/glyptodon/clipboard-permission-manager
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}