Copytables

Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.

Copytables là gì?

Copytables là một tiện ích mở rộng Chrome được phát triển bởi https://merribithouse.net, và tính năng chính của nó là "Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        - Hold Alt and click to select cells, Alt + Ctrl to select a column...

- or use hotkeys and menus to select and copy.
 
 - Copy as rich text (for Word), as tab or comma-delimited text (for Excel), as HTML (for your website).
 
 - Popup information about selected cells (Sum, Average etc)
 
 - Everything configurable.                    

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

Tên Copytables Copytables
ID ekdpkppgmlalfkphpibadldikjimijon
URL Chính Thức https://chromewebstore.google.com/detail/copytables/ekdpkppgmlalfkphpibadldikjimijon
Mô tả Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.
Kích Thước Tệp 43.07 KB
Số Lần Cài Đặt 93,176
Phiên Bản Hiện Tại 0.5.9
Cập Nhật Lần Cuối 2019-04-02
Ngày Phát Hành 2019-04-02
Đánh Giá 4.42/5 Tổng số 183 Đánh Giá
Nhà Phát Triển https://merribithouse.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://merribithouse.net/copytables
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "contextMenus",
        "webNavigation",
        "storage"
    ],
    "icons": {
        "16": "ico16.png",
        "48": "ico48.png",
        "128": "ico128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "ico19.png",
            "38": "ico38.png"
        },
        "default_title": "Copytables",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "commands": {
        "find_previous": {
            "description": "Find previous table"
        },
        "find_next": {
            "description": "Find next table"
        },
        "capture_cell": {
            "description": "Capture cells"
        },
        "capture_column": {
            "description": "Capture columns"
        },
        "capture_row": {
            "description": "Capture rows"
        },
        "capture_zzz": {
            "description": "Turn off the capture"
        },
        "capture_table": {
            "description": "Capture tables"
        }
    },
    "name": "Copytables",
    "version": "0.5.9",
    "homepage_url": "https:\/\/merribithouse.net\/copytables"
}