Dune Data Extractor by Table Capture
Allows you to extract data from Dune queries view to Excel (XLSX) or CSV.
Vad är Dune Data Extractor by Table Capture?
Dune Data Extractor by Table Capture är en Chrome-tillägg utvecklad av https://georgemike.com, och dess huvudfunktion är "Allows you to extract data from Dune queries view to Excel (XLSX) or CSV.".
Tilläggsskärmbilder
Ladda ner Dune Data Extractor by Table Capture-förlängningens CRX-fil
Ladda ner Dune Data Extractor 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
The Dune Data Extractor allows you to export query results to a CSV or Microsoft Excel file (or copy the data to the clipboard). Features: • Export to Microsoft Excel (XLSX), CSV • Copy to Clipboard • Break massive result sets into files with 10K rows each How it works: • Just right-click to download in your desired format • You get 5 free exports, afterwards you can purchase a 25-pack of exports or a license for unlimited exports. Updated: 2/15/2024
Grundläggande Information om Tillägg
Namn | Dune Data Extractor by Table Capture |
ID | najiannhbfegmjhgkgikhpdefhnfdbmc |
Officiell webbadress | https://chromewebstore.google.com/detail/dune-data-extractor-by-ta/najiannhbfegmjhgkgikhpdefhnfdbmc |
Beskrivning | Allows you to extract data from Dune queries view to Excel (XLSX) or CSV. |
Filstorlek | 516 KB |
Antal Installationer | 138 |
Aktuell Version | 1.0.10 |
Senast Uppdaterad | 2024-02-21 |
Publiceringsdatum | 2023-10-25 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | https://georgemike.com |
E-post | [email protected] |
Betalningssätt | in_app |
Tilläggswebbplats | https://georgemike.com/ |
Hjälpsida URL | https://georgemike.com/ |
URL till Sekretesspolicy Sidan | https://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": "__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", "scripting", "webRequest" ], "content_scripts": [ { "matches": [ "https:\/\/dune.com\/*" ], "js": [ "js\/InPageExporter.js", "js\/content.js" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "account.html" ], "matches": [ "https:\/\/dune.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": [ "*:\/\/dune.com\/*", "*:\/\/app-api.dune.com\/*" ] } |