CSV Reader

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

Что такое CSV Reader?

CSV Reader - это расширение Chrome, разработанное rubenvl90, и его основная функция - "Transforms raw csv data into a simple html table, easily readable on the browser".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения CSV Reader

Скачайте файлы расширений CSV Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
}