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.
Vad är CSV Viewer by Table Capture?
CSV Viewer by Table Capture är en Chrome-tillägg utvecklad av https://georgemike.com, och dess huvudfunktion är "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Tilläggsskärmbilder
Ladda ner CSV Viewer by Table Capture-förlängningens CRX-fil
Ladda ner CSV Viewer by Table Capture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | CSV Viewer by Table Capture |
ID | igjpnkigohahllcmmgbeabfkoklalljc |
Officiell webbadress | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
Beskrivning | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
Filstorlek | 695 KB |
Antal Installationer | 555 |
Aktuell Version | 1.0.10 |
Senast Uppdaterad | 2023-02-09 |
Publiceringsdatum | 2022-10-29 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://georgemike.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://georgemike.com/ |
Hjälpsida URL | https://georgemike.com/ |
URL till Sekretesspolicy Sidan | https://www.georgemike.com/chrome/privacypolicy |
Stödda Språk | 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" ] } |