Browser Clipboard

Browser Clipboard makes copy/paste easy by providing a panel that can hold multiple items.

Browser Clipboard là gì?

Browser Clipboard là một tiện ích mở rộng Chrome được phát triển bởi Zsolt Terek (Google), và tính năng chính của nó là "Browser Clipboard makes copy/paste easy by providing a panel that can hold multiple items.".

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

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

                        1. Select some text or pick an image and start dragging. Browser Clipboard will appear and the items can be dropped on it.

2. Now you can go to any other page and drag the copied items from the Browser Clipboard into the elements of the page.

Instead of dragging, the selection or an image/link can also be copied to the Browser Clipboard using the context menu.

Text items can be edited by double-clicking on them. Double-clicking on the Browser Clipboard creates a new item.

If you need to copy the same item multiple times, you can make it sticky using the pin icon. Sticky items are not automatically removed from the Browser Clipboard when being dragged off.

Any data copied to the Browser Clipboard is stored only in your browser's memory, on your local machine. Once an item is removed from the Browser Clipboard, or the browser is closed, the data is automatically deleted and there is no way to restore it.

Do not use Browser Clipboard for storing sensitive data (passwords, credit card numbers). Since the Browser Clipboard is technically injected into the webpages you visit, those might be able access the data without being drag'n'dropped.

This extension was developed by a Google engineer in 20% time. It is not an official Google extension.                    

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

Tên Browser Clipboard Browser Clipboard
ID bkghojmamekkhbgcjmegbmnfclpfihem
URL Chính Thức https://chrome.google.com/webstore/detail/browser-clipboard/bkghojmamekkhbgcjmegbmnfclpfihem
Mô tả Browser Clipboard makes copy/paste easy by providing a panel that can hold multiple items.
Kích Thước Tệp 360 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.0.15
Cập Nhật Lần Cuối 2014-01-20
Ngày Phát Hành 2014-01-20
Đánh Giá 2.88/5 Tổng số 178 Đánh Giá
Nhà Phát Triển Zsolt Terek (Google)
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browser Clipboard",
    "version": "1.0.15",
    "description": "__MSG_DROPBAR_DESCRIPTION__",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background-compiled.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_title": "__MSG_SHOW_HIDE_DROPBAR__"
    },
    "content_scripts": [
        {
            "js": [
                "content-script-compiled.js"
            ],
            "css": [
                "browser-clipboard.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "pin0.png",
        "pin0_p.png",
        "pin1.png",
        "pin1_p.png",
        "close.png",
        "close_p.png"
    ],
    "options_page": "options.html"
}