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 |
公式URL | 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 |
Eメール | [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": [ "*:\/\/*\/*" ] } |