Download table as CSV
Download HTML tables in MS Excel style CSV format.
Download table as CSVとは何ですか?
Download table as CSVはarktivによって開発されたChromeの拡張機能で、その主な機能は「Download HTML tables in MS Excel style CSV format.」です。
拡張機能のスクリーンショット
Download table as CSV拡張機能のCRXファイルをダウンロード
Download table as CSV拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple to use! Right click on the table, then select 'Download table as CSV' from the context menu. Alternatively you can click the icon and then click on the table to download The extension downloads the HTML tables in MS Excel style CSV format. Images will be show in the CSV file as the source URL. Inputs and text-areas will be indicated in the CSV file with a '(i)' Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup. Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format. Attempts to follow RFC4180 Source code: https://github.com/arktiv/table-csv-chrome
拡張機能の基本情報
名前 | Download table as CSV |
ID | jgeonblahchgiadgojdjilffklaihalj |
公式URL | https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj |
説明 | Download HTML tables in MS Excel style CSV format. |
ファイルサイズ | 8.34 KB |
インストール数 | 20,000 |
現在のバージョン | 1.6 |
最終更新日 | 2023-11-27 |
公開日 | 2020-05-30 |
評価 | 4.33/5 合計 39 レビュー |
開発者 | arktiv |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/arktiv/table-csv-chrome |
ヘルプページのURL | https://github.com/arktiv/table-csv-chrome |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Download table as CSV", "description": "Download HTML tables in MS Excel style CSV format.", "version": "1.6", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "32": "icons\/32x32.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" } } |