CSV Viewer by Table Capture

Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.

O que é CSV Viewer by Table Capture?

CSV Viewer by Table Capture é uma extensão do Chrome desenvolvida por https://georgemike.com, e sua principal característica é "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão CSV Viewer by Table Capture

Baixe arquivos de extensão CSV Viewer by Table Capture 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

                        CSV Viewer displays CSV data in a lovely table and helps you copy that data with proper row and column-delimiters so that you can get that data into a spreadsheet of your choice.

As a reminder, make sure to give the extension access to local files if you'd like CSV Viewer to handle CSV files you drop into Chrome.

Last Updated: 2/8/2023                    

Informações Básicas da Extensão

Nome CSV Viewer by Table Capture CSV Viewer by Table Capture
ID igjpnkigohahllcmmgbeabfkoklalljc
URL Oficial https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc
Descrição Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
Tamanho do Arquivo 695 KB
Contagem de Instalações 555
Versão Atual 1.0.10
Última Atualização 2023-02-09
Data de Publicação 2022-10-29
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://georgemike.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://georgemike.com/
URL da Página de Ajuda https://georgemike.com/
URL da Página de Política de Privacidade https://www.georgemike.com/chrome/privacypolicy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.10",
    "name": "CSV Viewer by Table Capture",
    "short_name": "CSV Viewer",
    "description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.",
    "homepage_url": "https:\/\/georgemike.com",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.128.png",
                "images\/icon.tablecapture.png",
                "images\/icon.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lib\/Blob.js",
                "js\/lib\/FileSaver.v2.0.2.min.js",
                "js\/lib\/xlsx.full.1.13.0.min.js",
                "js\/lib\/papaparse.min.js",
                "js\/Clipboard.js",
                "js\/Config.js",
                "js\/CSVV.js",
                "js\/ExcelUtil.js",
                "js\/MessageAction.js",
                "js\/Utils.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}