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”。
擴展截圖
下載Auto-Convert CSV to XLSX擴展crx文件
下載Auto-Convert CSV to XLSX擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
** 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 |
ID | bpcbpnlhalnkaheioffegmhhdlmooieg |
官方網址 | 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 } |