CSV Formatter
Format select data with header
What is CSV Formatter?
CSV Formatter is a Chrome extension developed by zoujinhe, and its main feature is "Format select data with header".
Extension Screenshots
Download CSV Formatter Extension CRX File
Download CSV Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
Official URL | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
Description | Format select data with header |
File Size | 116 KB |
Installation Count | 95 |
Current Version | 0.0.3 |
Last Updated | 2021-08-23 |
Publish Date | 2021-08-11 |
Developer | zoujinhe |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } } |