TableScraper
Allows you to download web tables as .csv files
Что такое TableScraper?
TableScraper - это расширение Chrome, разработанное JessieCS50, и его основная функция - "Allows you to download web tables as .csv files".
Снимки экрана расширения
Скачать файл CRX расширения TableScraper
Скачайте файлы расширений TableScraper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically finds tables in web pages and adds "Download as csv" buttons so you can easily collect data without the need for copy and paste. "I wish I could download this as a csv" - now you can!
Основная информация о расширении
Название | TableScraper |
ID | emkcilhnngffafccblemkljfpkabpapg |
Официальный URL | https://chromewebstore.google.com/detail/tablescraper/emkcilhnngffafccblemkljfpkabpapg |
Описание | Allows you to download web tables as .csv files |
Размер файла | 55.5 KB |
Количество установок | 163 |
Текущая Версия | 1.1 |
Последнее Обновление | 2020-05-04 |
Дата публикации | 2020-05-04 |
Разработчик | JessieCS50 |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TableScraper", "version": "1.1", "description": "Allows you to download web tables as .csv files", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "activeTab", "declarativeContent" ], "manifest_version": 2 } |