CSV Formatter
Format select data with header
Wat is CSV Formatter?
CSV Formatter is een Chrome-extensie ontwikkeld door zoujinhe, en de belangrijkste functie is "Format select data with header".
Extensie Screenshots
Download het CRX-bestand van de extensie CSV Formatter
Download CSV Formatter-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
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.
Basisinformatie over de Extensie
Naam | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
Officiële URL | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
Beschrijving | Format select data with header |
Bestandsgrootte | 116 KB |
Aantal Installaties | 95 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2021-08-23 |
Publicatiedatum | 2021-08-11 |
Ontwikkelaar | zoujinhe |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |