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 |
| Eメール | [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": []
}
} | |