Quick Query Editor and CSV Exporter
This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.
Cos'è Quick Query Editor and CSV Exporter?
Quick Query Editor and CSV Exporter è un'estensione di Chrome sviluppata da https://sanjaykeynotes.blogspot.com, e la sua funzione principale è "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quick Query Editor and CSV Exporter
Scarica i file di estensione Quick Query Editor and CSV Exporter 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
This tool/extension used to append object field in Query Editor on single click into Salesforce Console screen as well as exporter grid result as CSV. Note : For used easily have to open developer console into Chrome Tab.
Informazioni di Base sull'Estensione
Nome | Quick Query Editor and CSV Exporter |
ID | fpeakcladndghikobmooojkbhkinlhck |
URL Ufficiale | https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck |
Descrizione | This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV. |
Dimensione del File | 11.43 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2018-04-16 |
Data di Pubblicazione | 2018-04-16 |
Sviluppatore | https://sanjaykeynotes.blogspot.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick Query Editor and CSV Exporter", "version": "0.1.4", "manifest_version": 2, "description": "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.", "icons": { "16": "images\/soql16.png", "128": "images\/soql128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_title": "Quick Query Editor and CSV Exporter" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "activeTab" ] } |