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.

Qu'est-ce que CSV Viewer by Table Capture ?

CSV Viewer by Table Capture est une extension Chrome développée par https://georgemike.com, et sa fonction principale est "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension CSV Viewer by Table Capture

Téléchargez les fichiers d'extension CSV Viewer by Table Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom CSV Viewer by Table Capture CSV Viewer by Table Capture
ID igjpnkigohahllcmmgbeabfkoklalljc
URL Officiel https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc
Description Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
Taille du Fichier 695 KB
Nombre d'Installations 555
Version Actuelle 1.0.10
Dernière Mise à Jour 2023-02-09
Date de Publication 2022-10-29
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://georgemike.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://georgemike.com/
URL de la Page d'Aide https://georgemike.com/
URL de la Page de Politique de Confidentialité https://www.georgemike.com/chrome/privacypolicy
Langues Prises en Charge 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"
    ]
}