CSV Reader

Transforms raw csv data into a simple html table, easily readable on the browser

CSV Reader क्या है?

CSV Reader rubenvl90 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transforms raw csv data into a simple html table, easily readable on the browser"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        When quickly looking through csv data files online, you either have to download and open them with Excel, Numbers, etc., or try to skim through the data in its raw state...

CSV Reader makes it much easier: It allows you to look at the data formatted as a table, so you can make decisions faster.

This extension transforms raw csv to a simple html table in seconds, and shows it online in the same tab:

Give CSV Reader some settings (separator, title line, lines to skip, links in text) and it will format the table nicely so it's easy to read, in the same tab where the data was.

The extension now stops .csv files from downloading, and remembers your settings for each url.

If needed, you can easily reset the data with a single click.                    

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

नाम CSV Reader CSV Reader
ID dnioinfbhmclclfdbcnlfgbojdpdicde
आधिकारिक URL https://chromewebstore.google.com/detail/csv-reader/dnioinfbhmclclfdbcnlfgbojdpdicde
विवरण Transforms raw csv data into a simple html table, easily readable on the browser
फ़ाइल का आकार 26.08 KB
स्थापना संख्या 10,579
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2022-09-06
प्रकाशन तिथि 2020-11-03
रेटिंग 4.51/5 कुल 53 रेटिंग्स
डेवलपर rubenvl90
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/rubenvar/csv-reader
सहायता पृष्ठ URL https://github.com/rubenvar/csv-reader/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSV Reader",
    "version": "1.1.2",
    "description": "Transforms raw csv data into a simple html table, easily readable on the browser",
    "homepage_url": "https:\/\/github.com\/rubenvar\/csv-reader",
    "icons": {
        "32": "icons\/csv-32.png",
        "48": "icons\/csv-48.png",
        "96": "icons\/csv-96.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "polyfills\/browser-polyfill.min.js",
            "content_scripts\/background.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/csv-16.png",
            "32": "icons\/csv-32.png",
            "64": "icons\/csv-64.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "CSV Reader",
        "theme_icons": [
            {
                "dark": "icons\/csv-16.png",
                "light": "icons\/csv-light-16.png",
                "size": 16
            },
            {
                "dark": "icons\/csv-32.png",
                "light": "icons\/csv-light-32.png",
                "size": 32
            }
        ]
    },
    "author": "Rub\u00e9n Vara"
}