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.
Cos'è CSV Viewer by Table Capture?
CSV Viewer by Table Capture è un'estensione di Chrome sviluppata da https://georgemike.com, e la sua funzione principale è "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CSV Viewer by Table Capture
Scarica i file di estensione CSV Viewer by Table Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | igjpnkigohahllcmmgbeabfkoklalljc |
| URL Ufficiale | https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc |
| Descrizione | Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file. |
| Dimensione del File | 695 KB |
| Conteggio Installazioni | 555 |
| Versione Corrente | 1.0.10 |
| Ultimo Aggiornamento | 2023-02-09 |
| Data di Pubblicazione | 2022-10-29 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://georgemike.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://georgemike.com/ |
| URL della Pagina di Aiuto | https://georgemike.com/ |
| URL della Pagina della Politica sulla Privacy | https://www.georgemike.com/chrome/privacypolicy |
| Lingue Supportate | 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"
]
} | |