Auto-Convert CSV to XLSX

Auto-Converts downloaded CSV files to XLSX

Auto-Convert CSV to XLSX란 무엇입니까?

Auto-Convert CSV to XLSX은(는) DynamicL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto-Converts downloaded CSV files to XLSX"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Auto-Convert CSV to XLSX 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ** Summary **

v1.0 comes with the following features:

* Easy to get started, simply install via the Chrome Extension library, ENABLE 'Allow access to file URLS’ via 'Manage Extensions' and its ready to go
* All the code and data runs client side in the browser and remains there so your data never leaves your computer
* Reliable, accurate and fast CSV conversion
* Customisable Options
-- Domain White List (blank by default). For all domains, leave blank. For multiple domains, use comma separated list of domain names, examples below:
--  google.com
-- google.com,microsoft.com,github.com
- Delete CSV after converting to Excel XLSX (disabled by default)
- Append Timestamp to Filename (enabled by default)

** Credits **
Papa Parse - https://github.com/mholt/PapaParse
zipcelx - https://github.com/egeriis/zipcelx

** Contributing **
To discuss a new feature or ask a question, please open an issue or contact me directly - [email protected]                    

확장 프로그램 기본 정보

이름 Auto-Convert CSV to XLSX Auto-Convert CSV to XLSX
ID bpcbpnlhalnkaheioffegmhhdlmooieg
공식 URL https://chromewebstore.google.com/detail/auto-convert-csv-to-xlsx/bpcbpnlhalnkaheioffegmhhdlmooieg
설명 Auto-Converts downloaded CSV files to XLSX
파일 크기 80.5 KB
설치 횟수 858
현재 버전 1.0
최근 업데이트 2021-01-11
출시 날짜 2021-01-09
평점 4.75/5 총 4 개의 평점
개발자 DynamicL
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/DynamicLTechnologySolutions/Auto-Convert-CSV-to-XLSX
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto-Convert CSV to XLSX",
    "version": "1.0",
    "description": "Auto-Converts downloaded CSV files to XLSX",
    "permissions": [
        "storage",
        "downloads",
        "file:\/\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "papaparse.min.js",
            "background.js",
            "standalone.js"
        ]
    },
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "manifest_version": 2
}