Copy Vertically on HTML Table
Enables to store column's values from HTML table to your clipboard.
Qu'est-ce que Copy Vertically on HTML Table ?
Copy Vertically on HTML Table est une extension Chrome développée par Tomoo Mizukami, et sa fonction principale est "Enables to store column's values from HTML table to your clipboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Copy Vertically on HTML Table
Téléchargez les fichiers d'extension Copy Vertically on HTML Table au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | nojhhcfadghbjammgogoepokijaaihcb |
URL Officiel | 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. |
Taille du Fichier | 8.95 KB |
Nombre d'Installations | 1,000 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2014-05-01 |
Date de Publication | 2014-05-01 |
Évaluation | 2.60/5 Total 10 Évaluations |
Développeur | Tomoo Mizukami |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tmiz/copyvertically |
Langues Prises en Charge | 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 } |