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.
What is Quick Query Editor and CSV Exporter?
Quick Query Editor and CSV Exporter is a Chrome extension developed by https://sanjaykeynotes.blogspot.com, and its main feature is "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.".
Extension Screenshots
Download Quick Query Editor and CSV Exporter Extension CRX File
Download Quick Query Editor and CSV Exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Quick Query Editor and CSV Exporter |
ID | fpeakcladndghikobmooojkbhkinlhck |
Official URL | https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck |
Description | This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV. |
File Size | 11.43 KB |
Installation Count | 31 |
Current Version | 0.1.4 |
Last Updated | 2018-04-16 |
Publish Date | 2018-04-16 |
Developer | https://sanjaykeynotes.blogspot.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |