Download table as CSV
Download HTML tables in MS Excel style CSV format.
Что такое Download table as CSV?
Download table as CSV - это расширение Chrome, разработанное arktiv, и его основная функция - "Download HTML tables in MS Excel style CSV format.".
Снимки экрана расширения
Скачать файл CRX расширения Download table as CSV
Скачайте файлы расширений 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 |
Электронная почта | [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" } } |