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.
Apa itu Quick Query Editor and CSV Exporter?
Quick Query Editor and CSV Exporter adalah ekstensi Chrome yang dikembangkan oleh https://sanjaykeynotes.blogspot.com, dan fitur utamanya adalah "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Quick Query Editor and CSV Exporter
Unduh file ekstensi Quick Query Editor and CSV Exporter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Quick Query Editor and CSV Exporter |
ID | fpeakcladndghikobmooojkbhkinlhck |
URL Resmi | https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck |
Deskripsi | This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV. |
Ukuran File | 11.43 KB |
Jumlah Instalasi | 31 |
Versi Saat Ini | 0.1.4 |
Terakhir Diperbarui | 2018-04-16 |
Tanggal Publikasi | 2018-04-16 |
Pengembang | https://sanjaykeynotes.blogspot.com |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |