Copy Tabs

Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs

Copy Tabs là gì?

Copy Tabs là một tiện ích mở rộng Chrome được phát triển bởi http://codingeverything.blogspot.com, và tính năng chính của nó là "Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs".

Ả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 Copy Tabs

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

                        Saving a large number of tabs can after a particularly fervent browsing session can sometimes be quite a hassle.  Copy and pasting back and forth between your browser and text field.

Now you can copy the web url and web page title as one single formatted link for every highlighted tab in the current window.

In chrome, you can highlight multiple tabs the same multiple selection is typically handled, either by holding down control and selecting individual tabs or shift to select a range.

Using the new keyboard shortcut, Ctrl + Shift + C, add all the links to your clipboard and paste them wherever you like with the standard paste operation.

You can follow or fork the extension at GitHub
https://github.com/KyleMit/ChromeCopyTabs

All code is open source and protected by the MIT developer licence (c) 2013 Kyle Mitofsky                    

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

Tên Copy Tabs Copy Tabs
ID efmfdbcopjfmgoefenohhlcplheclbeo
URL Chính Thức https://chrome.google.com/webstore/detail/copy-tabs/efmfdbcopjfmgoefenohhlcplheclbeo
Mô tả Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs
Kích Thước Tệp 61.43 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2013-07-17
Ngày Phát Hành 2013-07-17
Đánh Giá 1.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển http://codingeverything.blogspot.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Tabs",
    "version": "0.1",
    "description": "Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs",
    "icons": {
        "16": "Icons\/Logo16.png",
        "32": "Icons\/Logo32.png",
        "48": "Icons\/Logo48.png",
        "128": "Icons\/Logo128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "clipboardRead"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "copy-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            },
            "description": "Copy Selected Tab Links"
        }
    }
}