Table Scrape
Scrape from tables.
什么是Table Scrape?
Table Scrape是由https://claycodes.org开发的Chrome扩展程序,该扩展的主要功能是“Scrape from tables.”。
扩展截图
下载Table Scrape扩展crx文件
下载Table Scrape扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Scrape data to a CSV from paginated tables using a button labeled with "next". Github source https://github.com/GoogleChromeLabs/table-scrape.git
扩展基本信息
名称 | Table Scrape |
ID | ocglnchcpdjocppfepejjddgieoodaep |
官方URL | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
简介 | Scrape from tables. |
文件大小 | 44.66 KB |
安装次数 | 169 |
当前版本 | 0.0.2 |
更新时间 | 2023-04-14 |
上架时间 | 2023-04-05 |
开发者 | https://claycodes.org |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.claycodes.org/google-add-onsextensions/table-scrape |
帮助页面URL | https://www.claycodes.org/google-add-onsextensions/table-scrape |
隐私政策页面URL | https://www.claycodes.org/home/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Table Scrape", "version": "0.0.2", "author": "Clay Smith", "short_name": "Table Scrape", "default_locale": "en", "description": "Scrape from tables.", "icons": { "19": "images\/19.png", "32": "images\/32.png", "38": "images\/38.png", "36": "images\/36.png", "64": "images\/64.png", "128": "images\/128.png" }, "permissions": [ "storage", "webNavigation" ], "host_permissions": [ "https:\/\/*\/*" ], "action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*\/*" ], "exclude_matches": [], "js": [ "contentscript.js" ] } ], "background": { "service_worker": "background.js" } } |