CSV Formatter
Format select data with header
Apa itu CSV Formatter?
CSV Formatter adalah ekstensi Chrome yang dikembangkan oleh zoujinhe, dan fitur utamanya adalah "Format select data with header".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi CSV Formatter
Unduh file ekstensi CSV Formatter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
URL Resmi | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
Deskripsi | Format select data with header |
Ukuran File | 116 KB |
Jumlah Instalasi | 95 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2021-08-23 |
Tanggal Publikasi | 2021-08-11 |
Pengembang | zoujinhe |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } } |