Copy Vertically on HTML Table
Enables to store column's values from HTML table to your clipboard.
Apa itu Copy Vertically on HTML Table?
Copy Vertically on HTML Table adalah ekstensi Chrome yang dikembangkan oleh Tomoo Mizukami, dan fitur utamanya adalah "Enables to store column's values from HTML table to your clipboard.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Copy Vertically on HTML Table
Unduh file ekstensi Copy Vertically on HTML Table dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
If you want to copy values on table, please use like following the instructions 1.Select [Copy Vertically on table]->[enable] on site which includes HTML table 2.Select a column on the table 3.Select [Copy Vertically on table]->[Copy values]. and the values will be copied on your clipboard
Informasi Dasar Ekstensi
Nama | |
ID | nojhhcfadghbjammgogoepokijaaihcb |
URL Resmi | https://chrome.google.com/webstore/detail/copy-vertically-on-html-t/nojhhcfadghbjammgogoepokijaaihcb |
Deskripsi | Enables to store column's values from HTML table to your clipboard. |
Ukuran File | 8.95 KB |
Jumlah Instalasi | 1,000 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2014-05-01 |
Tanggal Publikasi | 2014-05-01 |
Penilaian | 2.60/5 Total 10 Penilaian |
Pengembang | Tomoo Mizukami |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/tmiz/copyvertically |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Vertically on HTML Table", "description": "Enables to store column's values from HTML table to your clipboard.", "version": "0.1", "permissions": [ "contextMenus", "clipboardWrite", "clipboardRead" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true } ], "icons": { "128": "icon.png" }, "manifest_version": 2 } |