ColumnCopy
Enables copying columns from tables.
ColumnCopy란 무엇입니까?
ColumnCopy은(는) james.andres에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables copying columns from tables."입니다.
확장 프로그램 스크린샷
ColumnCopy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Column Copy enables copying HTML tables and HTML table columns. NEW in 0.5.0: - Remove analytics tracking after complaints from a few users. - Upgraded keypress detection will hopefully fix sticking ctrl key issues that affected some users - Cells with newlines or quotes will be wrapped in quotation marks Features: - Copy table column by Alt + Click on any table cell. The column contents is now in your clipboard. - Copy table by Shit + Alt + Click on any table cell. The table contents is now in your clipboard. - Keyboard shortcuts are configurable. Changelog: version 0.4.0 - Better handling of nested tables - Strips whitespace from cells - Spelling correction version 0.3.7 - Hyperlink preservation support is now available in the options page - Default shortcut in Linux is now Ctrl+Click. This fixes several reported issues. Copy HTML table and copy HTML table column using ColumnCopy!
확장 프로그램 기본 정보
이름 | ColumnCopy |
ID | lapbbfoohlcmlbdaakldmmallcbcbpjb |
공식 URL | https://chromewebstore.google.com/detail/columncopy/lapbbfoohlcmlbdaakldmmallcbcbpjb |
설명 | Enables copying columns from tables. |
파일 크기 | 800 KB |
설치 횟수 | 39,610 |
현재 버전 | 0.5.0 |
최근 업데이트 | 2017-11-04 |
출시 날짜 | 2017-11-04 |
평점 | 3.54/5 총 160 개의 평점 |
개발자 | james.andres |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jamesandres/ColumnCopy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ColumnCopy", "version": "0.5.0", "manifest_version": 2, "description": "Enables copying columns from tables.", "homepage_url": "https:\/\/github.com\/jamesandres\/ColumnCopy", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "options_page": "src\/options\/index.html", "permissions": [ "clipboardWrite", "contextMenus" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery\/jquery.js", "js\/jquery.hotkeys\/jquery.hotkeys.js", "src\/inject\/inject.js" ], "css": [ "src\/inject\/inject.css" ] } ], "web_accessible_resources": [ "js\/jquery\/jquery.js", "js\/jquery\/jquery.min.map" ] } |