Quick Query
This extension allows you to query the currently logged in Force.com organization.
What is Quick Query?
Quick Query is a Chrome extension developed by udaykiran.uday, and its main feature is "This extension allows you to query the currently logged in Force.com organization.".
Download Quick Query Extension CRX File
Download Quick Query 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 is a plugin for Salesforce developer with this You can easily write a SOQL and Fetch results With out opening Developer console or Work Bench
Extension Basic Information
Name | Quick Query |
ID | fojkfhhigpkhlbbnlajaeiccngfeekkg |
Official URL | https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg |
Description | This extension allows you to query the currently logged in Force.com organization. |
File Size | 108 KB |
Installation Count | 35 |
Current Version | 0.1 |
Last Updated | 2016-12-02 |
Publish Date | 2016-12-02 |
Rating | 5.00/5 Total 5 Ratings |
Developer | udaykiran.uday |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Query", "version": "0.1", "description": "This extension allows you to query the currently logged in Force.com organization.", "author": "Ud@y", "permissions": [ "tabs", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "js\/jquery.js", "js\/forcetk.js", "js\/contentscript.js" ], "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ] } ], "web_accessible_resources": [ "js\/jquery-2.0.3.min.map" ] } |