CSV Reader

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

CSV Reader란 무엇입니까?

CSV Reader은(는) rubenvl90에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transforms raw csv data into a simple html table, easily readable on the browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CSV Reader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}