CSV Formatter
Format select data with header
Cos'è CSV Formatter?
CSV Formatter è un'estensione di Chrome sviluppata da zoujinhe, e la sua funzione principale è "Format select data with header".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CSV Formatter
Scarica i file di estensione CSV Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
v 0.0.3 + copy raw logs v 0.0.1 *** first version, not very intuitive to use *** How to use: - Define CSV headers in options page. - Select csv text on any webpage. - Right click on selected text, select "CSV Formatter", apply selected text with one of configured headers. - Click "CSV Formatter" plugin/extension icon to see formatted CSV showed in tables.
Informazioni di Base sull'Estensione
Nome | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
URL Ufficiale | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
Descrizione | Format select data with header |
Dimensione del File | 116 KB |
Conteggio Installazioni | 95 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2021-08-23 |
Data di Pubblicazione | 2021-08-11 |
Sviluppatore | zoujinhe |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CSV Formatter", "description": "Format select data with header", "version": "0.0.3", "browser_action": { "default_popup": "index.html" }, "options_page": "options.html", "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "permissions": [ "contextMenus", "unlimitedStorage", "storage" ], "background": { "persistent": false, "scripts": [ "background.js" ] } } |