Copy Vertically on HTML Table

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

Hvad er Copy Vertically on HTML Table?

Copy Vertically on HTML Table er en Chrome-udvidelse udviklet af Tomoo Mizukami, og dens hovedfunktion er "Enables to store column's values from HTML table to your clipboard.".

Udvidelsesskærmbilleder

screenshot

Download Copy Vertically on HTML Table-udvidelses-CRX-fil

Download Copy Vertically on HTML Table-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Vertically on HTML Table Copy Vertically on HTML Table
ID nojhhcfadghbjammgogoepokijaaihcb
Officiel URL https://chrome.google.com/webstore/detail/copy-vertically-on-html-t/nojhhcfadghbjammgogoepokijaaihcb
Beskrivelse Enables to store column's values from HTML table to your clipboard.
Filstørrelse 8.95 KB
Antal Installationer 1,000
Nuværende Version 0.1
Senest Opdateret 2014-05-01
Udgivelsesdato 2014-05-01
Bedømmelse 2.60/5 Samlet 10 Bedømmelser
Udvikler Tomoo Mizukami
Betalingsmetode free
Udvidelseswebsted https://github.com/tmiz/copyvertically
Understøttede Sprog 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
}