CSV Formatter
Format select data with header
O que é CSV Formatter?
CSV Formatter é uma extensão do Chrome desenvolvida por zoujinhe, e sua principal característica é "Format select data with header".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CSV Formatter
Baixe arquivos de extensão CSV Formatter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
URL Oficial | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
Descrição | Format select data with header |
Tamanho do Arquivo | 116 KB |
Contagem de Instalações | 95 |
Versão Atual | 0.0.3 |
Última Atualização | 2021-08-23 |
Data de Publicação | 2021-08-11 |
Desenvolvedor | zoujinhe |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } } |