Copy Vertically on HTML Table

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

Was ist Copy Vertically on HTML Table?

Copy Vertically on HTML Table ist eine Chrome-Erweiterung, die von Tomoo Mizukami entwickelt wurde, und ihr Hauptmerkmal ist "Enables to store column's values from HTML table to your clipboard.".

Erweiterungsscreenshots

screenshot

Copy Vertically on HTML Table-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Vertically on HTML Table-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Copy Vertically on HTML Table Copy Vertically on HTML Table
ID nojhhcfadghbjammgogoepokijaaihcb
Offizielle URL https://chrome.google.com/webstore/detail/copy-vertically-on-html-t/nojhhcfadghbjammgogoepokijaaihcb
Beschreibung Enables to store column's values from HTML table to your clipboard.
Dateigröße 8.95 KB
Installationsanzahl 1,000
Aktuelle Version 0.1
Letztes Update 2014-05-01
Veröffentlichungsdatum 2014-05-01
Bewertung 2.60/5 Insgesamt 10 Bewertungen
Entwickler Tomoo Mizukami
Zahlungsart free
Erweiterungswebsite https://github.com/tmiz/copyvertically
Unterstützte Sprachen 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
}