Table Extractor
Export all table content on a webpage to json or csv in a single click.
什么是Table Extractor?
Table Extractor是由akopyany开发的Chrome扩展程序,该扩展的主要功能是“Export all table content on a webpage to json or csv in a single click.”。
扩展截图
下载Table Extractor扩展crx文件
下载Table Extractor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extract tables on webpage to CSV or JSON. Forget about manually selecting tables and content. The tool will find all html tables on a page and make a json or csv of each one. 扩展基本信息
| 名称 | |
| ID | bplejbaicgjafneipkgikahgengigkpe |
| 官方URL | https://chromewebstore.google.com/detail/table-extractor/bplejbaicgjafneipkgikahgengigkpe |
| 简介 | Export all table content on a webpage to json or csv in a single click. |
| 文件大小 | 5.66 KB |
| 安装次数 | 66 |
| 当前版本 | 1.0 |
| 更新时间 | 2023-09-25 |
| 上架时间 | 2023-09-25 |
| 开发者 | akopyany |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Table Extractor",
"version": "1.0",
"description": "Export all table content on a webpage to json or csv in a single click.",
"permissions": [
"activeTab",
"scripting"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": []
}
} | |