Download table as CSV
Download HTML tables in MS Excel style CSV format.
What is Download table as CSV?
Download table as CSV is a Chrome extension developed by arktiv, and its main feature is "Download HTML tables in MS Excel style CSV format.".
Extension Screenshots
Download Download table as CSV Extension CRX File
Download Download table as CSV extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Download table as CSV |
ID | jgeonblahchgiadgojdjilffklaihalj |
Official URL | https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj |
Description | Download HTML tables in MS Excel style CSV format. |
File Size | 8.34 KB |
Installation Count | 20,000 |
Current Version | 1.6 |
Last Updated | 2023-11-27 |
Publish Date | 2020-05-30 |
Rating | 4.33/5 Total 39 Ratings |
Developer | arktiv |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/arktiv/table-csv-chrome |
Help Page URL | https://github.com/arktiv/table-csv-chrome |
Supported Languages | 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" } } |