Copy Tables
Copying tables.
What is Copy Tables?
Copy Tables is a Chrome extension developed by hanuiparam, and its main feature is "Copying tables.".
Extension Screenshots
Download Copy Tables Extension CRX File
Download Copy Tables extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
웹 페이지에 있는 table에서 특정 테이블 행이나 열, 특정 테이블 전체를 간편하게 선택해서 클립보드로 복사할 수 있는 프로그램입니다. 테이블 위에 마우스를 놓고 아래와 같은 단축키와 마우스 클릭을 사용합니다. 1번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 열을 클립보드로 복사. 2번키 + 마우스 왼쪽 클릭: 테이블에 있는 특정 행을 클립보드로 복사. 3번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 클립보드로 복사. 4번키 + 마우스 왼쪽 클릭: 테이블에 있는 전체 내용을 블록으로 선택만. 클립보드로 복사는 사용자가 직접 선택. 프로그램 단축키는 환경설정에서 켜고 끄거나 다른 키로 바꿀 수 있습니다.
Extension Basic Information
Name | Copy Tables |
ID | nfelplifoghmibajcpjlfpbobkcmbbfo |
Official URL | https://chromewebstore.google.com/detail/copy-tables/nfelplifoghmibajcpjlfpbobkcmbbfo |
Description | Copying tables. |
File Size | 108 KB |
Installation Count | 1,152 |
Current Version | 0.2.0 |
Last Updated | 2022-05-05 |
Publish Date | 2020-01-03 |
Rating | 4.50/5 Total 2 Ratings |
Developer | hanuiparam |
[email protected] | |
Payment Type | free |
Supported Languages | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Tables", "short_name": "Copy tables", "version": "0.2.0", "manifest_version": 3, "description": "Copying tables.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_title": "Copy tables", "default_icon": "icons\/icon128.png", "default_popup": "frontPage.html" }, "background": { "service_worker": "background.js", "type": "module" }, "options_page": "options.html", "permissions": [ "activeTab", "background", "clipboardWrite", "contextMenus" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/js\/jquery-3.4.1.js", "js\/jquery.hotkeys.js", "shared.js", "tableCopy.js" ], "css": [ "tableCopy.css" ], "all_frames": true } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |