Allow Clipboard

Allows clipboard read and write without user interaction.

Allow Clipboard là gì?

Allow Clipboard là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Allows clipboard read and write without user interaction.".

Ả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 Allow Clipboard

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

                        Chrome Extension that allows clipboard read and write without user interaction. Normally Chrome does not allow JavaScript access to the Clipboard without a user interaction (e.g. click). AllowClipboard extension can be useful in situations where clipboard access is needed out of band, such as during an asynchronous method call from the server.                    

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

Tên Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
URL Chính Thức https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Mô tả Allows clipboard read and write without user interaction.
Kích Thước Tệp 28.08 KB
Số Lần Cài Đặt 3,947
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2017-05-25
Ngày Phát Hành 2017-05-25
Đánh Giá 2.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/itsmikeeng/AllowClipboard
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Allow Clipboard",
    "version": "1.0.3",
    "description": "Allows clipboard read and write without user interaction.",
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js",
            "common.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "allowClipboardContentScript.js",
                "common.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "allowClipboardClient.js",
        "common.js"
    ],
    "options_page": "options.html"
}