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คืออะไร?

Copytables เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://merribithouse.net และคุณลักษณะหลักของมันคือ "Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copytables

ดาวน์โหลดไฟล์ส่วนขยาย Copytables ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Copytables Copytables
ID ekdpkppgmlalfkphpibadldikjimijon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copytables/ekdpkppgmlalfkphpibadldikjimijon
คำอธิบาย Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.
ขนาดไฟล์ 43.07 KB
จำนวนการติดตั้ง 93,176
เวอร์ชันปัจจุบัน 0.5.9
อัปเดตครั้งล่าสุด 2019-04-02
วันที่เผยแพร่ 2019-04-02
คะแนน 4.42/5 รวมทั้งหมด 183 คะแนน
ผู้พัฒนา https://merribithouse.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://merribithouse.net/copytables
ภาษาที่รองรับ 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"
}