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.」です。
拡張機能のスクリーンショット
Copytables拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } |