Copy Vertically on HTML Table

Enables to store column's values from HTML table to your clipboard.

What is Copy Vertically on HTML Table?

Copy Vertically on HTML Table is a Chrome extension developed by Tomoo Mizukami, and its main feature is "Enables to store column's values from HTML table to your clipboard.".

Extension Screenshots

screenshot

Download Copy Vertically on HTML Table Extension CRX File

Download Copy Vertically on HTML Table 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

                        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                    

Extension Basic Information

Name Copy Vertically on HTML Table Copy Vertically on HTML Table
ID nojhhcfadghbjammgogoepokijaaihcb
Official URL https://chrome.google.com/webstore/detail/copy-vertically-on-html-t/nojhhcfadghbjammgogoepokijaaihcb
Description Enables to store column's values from HTML table to your clipboard.
File Size 8.95 KB
Installation Count 1,000
Current Version 0.1
Last Updated 2014-05-01
Publish Date 2014-05-01
Rating 2.60/5 Total 10 Ratings
Developer Tomoo Mizukami
Payment Type free
Extension Website https://github.com/tmiz/copyvertically
Supported Languages 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
}