CSV Viewer by Table Capture
Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
Что такое CSV Viewer by Table Capture?
CSV Viewer by Table Capture - это расширение Chrome, разработанное https://georgemike.com, и его основная функция - "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Снимки экрана расширения
Скачать файл CRX расширения CSV Viewer by Table Capture
Скачайте файлы расширений CSV Viewer by Table Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
CSV Viewer displays CSV data in a lovely table and helps you copy that data with proper row and column-delimiters so that you can get that data into a spreadsheet of your choice. As a reminder, make sure to give the extension access to local files if you'd like CSV Viewer to handle CSV files you drop into Chrome. Last Updated: 2/8/2023
Основная информация о расширении
Название | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
Официальный URL | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Описание | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
Размер файла | 695 KB |
Количество установок | 555 |
Текущая Версия | 1.0.10 |
Последнее Обновление | 2023-02-09 |
Дата публикации | 2022-10-29 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://georgemike.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://georgemike.com/ |
URL страницы помощи | https://georgemike.com/ |
URL страницы политики конфиденциальности | https://www.georgemike.com/chrome/privacypolicy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.10", "name": "CSV Viewer by Table Capture", "short_name": "CSV Viewer", "description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.", "homepage_url": "https:\/\/georgemike.com", "default_locale": "en", "icons": { "128": "images\/icon.128.png" }, "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "web_accessible_resources": [ { "resources": [ "images\/icon.128.png", "images\/icon.tablecapture.png", "images\/icon.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "run_at": "document_end", "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/Blob.js", "js\/lib\/FileSaver.v2.0.2.min.js", "js\/lib\/xlsx.full.1.13.0.min.js", "js\/lib\/papaparse.min.js", "js\/Clipboard.js", "js\/Config.js", "js\/CSVV.js", "js\/ExcelUtil.js", "js\/MessageAction.js", "js\/Utils.js", "js\/content.js" ], "css": [ "css\/content.css" ], "all_frames": false } ], "permissions": [ "contextMenus", "downloads" ] } |