HTMLtoCSV
Exports HTML tables to CSV spreadsheets.
什麼是HTMLtoCSV?
HTMLtoCSV是由oldjamey開發的Chrome擴展程式,該擴展的主要功能是“Exports HTML tables to CSV spreadsheets.”。
擴展截圖
下載HTMLtoCSV擴展crx文件
下載HTMLtoCSV擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A handy extension that scrapes HTML tables from the current page and adds buttons to download each table as individual CSV spreadsheets. Simple 2-step process: on the web page with data that you want to export, click the ultraball. All tables will be extracted from the page along with download buttons to export as CSV. Click the "Download as CSV" button to download the HTML table as a CSV spreadsheet. Saves all column headers and as much formatting as is available for CSV-formatted spreadsheets. If you need to get fancy with it and edit your spreadsheets before exporting, you may want to try "Instant Data Scraper" (no affiliation). This extension is barebones, vanilla JavaScript without any extra bells and/or whistles, in order to make your workflow as streamlined as possible.
擴展基本資訊
名稱 | HTMLtoCSV |
ID | cebninopfmnhginjlgfilofjgaakiock |
官方網址 | https://chromewebstore.google.com/detail/htmltocsv/cebninopfmnhginjlgfilofjgaakiock |
簡介 | Exports HTML tables to CSV spreadsheets. |
檔案大小 | 21.34 KB |
安裝次數 | 257 |
目前版本 | 1.0 |
更新時間 | 2022-02-25 |
上架時間 | 2022-02-24 |
開發者 | oldjamey |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en,en-GB,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0", "manifest_version": 3, "default_locale": "en", "icons": { "16": ".\/img\/16.png", "32": ".\/img\/32.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" }, "background": { "service_worker": ".\/background.js" }, "action": { "default_icon": { "16": ".\/img\/16.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ] } |