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 |
| 官方URL | 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"
]
} | |