Airtable Extractor by Table Capture
Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.
Cos'è Airtable Extractor by Table Capture?
Airtable Extractor by Table Capture è un'estensione di Chrome sviluppata da https://georgemike.com, e la sua funzione principale è "Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Airtable Extractor by Table Capture
Scarica i file di estensione Airtable Extractor 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
Last updated: 1/5/2024 Features: • Export to Microsoft Excel (XLSX), CSV, JSON • Copy to Clipboard • Export embedded Airtables How it works: • Just right-click to download in your desired format • You get 5 free exports, afterwards you can purchase a 30-pack of exports or a license for unlimited exports. Special Thanks: This extension is a fork + update of one made by Gonçalo Cabrita (gmcabrita.com).
Informazioni di Base sull'Estensione
Nome | Airtable Extractor by Table Capture |
ID | jdldgiafancpgcleiodepocjobmmfjif |
URL Ufficiale | https://chromewebstore.google.com/detail/airtable-extractor-by-tab/jdldgiafancpgcleiodepocjobmmfjif |
Descrizione | Allows you to extract data from an Airtable shared view to Excel (XLSX), CSV or JSON. |
Dimensione del File | 460 KB |
Conteggio Installazioni | 2,856 |
Versione Corrente | 1.0.54 |
Ultimo Aggiornamento | 2024-01-06 |
Data di Pubblicazione | 2022-03-28 |
Valutazione | 4.71/5 Totale 24 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,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.54", "name": "__MSG_extName__", "short_name": "__MSG_extSName__", "description": "__MSG_extDesc__", "default_locale": "en", "homepage_url": "https:\/\/georgemike.com", "icons": { "34": "img\/icon-34.png", "128": "img\/icon-128.png" }, "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "permissions": [ "contextMenus", "downloads", "storage", "webRequest", "scripting" ], "content_scripts": [ { "matches": [ "https:\/\/airtable.com\/*" ], "js": [ "js\/AirtableLocalPasswordSaver.js", "js\/InPageExporter.js", "js\/content.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "account.html" ], "matches": [ "https:\/\/airtable.com\/*" ] } ], "commands": { "export-to-csv": { "suggested_key": { "default": "Ctrl+Shift+J", "windows": "Alt+Shift+J", "mac": "Alt+Shift+J" }, "description": "Export to CSV" }, "export-to-excel": { "suggested_key": { "default": "Ctrl+Shift+L", "windows": "Alt+Shift+L", "mac": "Alt+Shift+L" }, "description": "Export to Excel" } }, "action": [], "host_permissions": [ "*:\/\/airtable.com\/*" ] } |