CSV Viewer by Table Capture
Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
什麼是CSV Viewer by Table Capture?
CSV Viewer by Table Capture是由https://georgemike.com開發的Chrome擴展程式,該擴展的主要功能是“Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.”。
擴展截圖
下載CSV Viewer by Table Capture擴展crx文件
下載CSV Viewer by Table Capture擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
CSV Viewer displays CSV data in a lovely table and helps you copy that data with proper row and column-delimiters so that you can get that data into a spreadsheet of your choice.
As a reminder, make sure to give the extension access to local files if you'd like CSV Viewer to handle CSV files you drop into Chrome.
Last Updated: 2/8/2023 擴展基本資訊
| 名稱 | |
| ID | igjpnkigohahllcmmgbeabfkoklalljc |
| 官方網址 | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
| 簡介 | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
| 檔案大小 | 695 KB |
| 安裝次數 | 555 |
| 目前版本 | 1.0.10 |
| 更新時間 | 2023-02-09 |
| 上架時間 | 2022-10-29 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://georgemike.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://georgemike.com/ |
| 說明頁面URL | https://georgemike.com/ |
| 隱私政策頁面URL | https://www.georgemike.com/chrome/privacypolicy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.0.10",
"name": "CSV Viewer by Table Capture",
"short_name": "CSV Viewer",
"description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.",
"homepage_url": "https:\/\/georgemike.com",
"default_locale": "en",
"icons": {
"128": "images\/icon.128.png"
},
"background": {
"service_worker": "js\/background.js"
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"images\/icon.128.png",
"images\/icon.tablecapture.png",
"images\/icon.png"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/lib\/Blob.js",
"js\/lib\/FileSaver.v2.0.2.min.js",
"js\/lib\/xlsx.full.1.13.0.min.js",
"js\/lib\/papaparse.min.js",
"js\/Clipboard.js",
"js\/Config.js",
"js\/CSVV.js",
"js\/ExcelUtil.js",
"js\/MessageAction.js",
"js\/Utils.js",
"js\/content.js"
],
"css": [
"css\/content.css"
],
"all_frames": false
}
],
"permissions": [
"contextMenus",
"downloads"
]
} | |