CSV Formatter

Format select data with header

Was ist CSV Formatter?

CSV Formatter ist eine Chrome-Erweiterung, die von zoujinhe entwickelt wurde, und ihr Hauptmerkmal ist "Format select data with header".

Erweiterungsscreenshots

screenshot

CSV Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie CSV Formatter-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CSV Formatter CSV Formatter
ID enjmadekbjfjfifodfnjdljccjgpemcg
Offizielle URL https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg
Beschreibung Format select data with header
Dateigröße 116 KB
Installationsanzahl 95
Aktuelle Version 0.0.3
Letztes Update 2021-08-23
Veröffentlichungsdatum 2021-08-11
Entwickler zoujinhe
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}