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.

CSV Viewer by Table Capture क्या है?

CSV Viewer by Table Capture https://georgemike.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CSV Viewer by Table Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम CSV Viewer by Table Capture CSV Viewer by Table Capture
ID igjpnkigohahllcmmgbeabfkoklalljc
आधिकारिक URL https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc
विवरण Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
फ़ाइल का आकार 695 KB
स्थापना संख्या 555
वर्तमान संस्करण 1.0.10
अंतिम अपडेट 2023-02-09
प्रकाशन तिथि 2022-10-29
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://georgemike.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://georgemike.com/
सहायता पृष्ठ URL https://georgemike.com/
गोपनीयता नीति पृष्ठ URL https://www.georgemike.com/chrome/privacypolicy
समर्थित भाषाएँ 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"
    ]
}