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은(는) https://merribithouse.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Copytables 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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"
}