Copy Vertically on HTML Table

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

Wat is Copy Vertically on HTML Table?

Copy Vertically on HTML Table is een Chrome-extensie ontwikkeld door Tomoo Mizukami, en de belangrijkste functie is "Enables to store column's values from HTML table to your clipboard.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Copy Vertically on HTML Table

Download Copy Vertically on HTML Table-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Copy Vertically on HTML Table Copy Vertically on HTML Table
ID nojhhcfadghbjammgogoepokijaaihcb
Officiële URL https://chrome.google.com/webstore/detail/copy-vertically-on-html-t/nojhhcfadghbjammgogoepokijaaihcb
Beschrijving Enables to store column's values from HTML table to your clipboard.
Bestandsgrootte 8.95 KB
Aantal Installaties 1,000
Huidige Versie 0.1
Laatst Bijgewerkt 2014-05-01
Publicatiedatum 2014-05-01
Beoordeling 2.60/5 Totaal 10 Beoordelingen
Ontwikkelaar Tomoo Mizukami
Betalingswijze free
Extensiewebsite https://github.com/tmiz/copyvertically
Ondersteunde Talen 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
}