ColumnCopy
Enables copying columns from tables.
什麼是ColumnCopy?
ColumnCopy是由james.andres開發的Chrome擴展程式,該擴展的主要功能是“Enables copying columns from tables.”。
擴展截圖
下載ColumnCopy擴展crx文件
下載ColumnCopy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |