Quick Query
This extension allows you to query the currently logged in Force.com organization.
什么是Quick Query?
Quick Query是由udaykiran.uday开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to query the currently logged in Force.com organization.”。
下载Quick Query扩展crx文件
下载Quick Query扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Quick Query |
ID | fojkfhhigpkhlbbnlajaeiccngfeekkg |
官方URL | https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg |
简介 | This extension allows you to query the currently logged in Force.com organization. |
文件大小 | 108 KB |
安装次数 | 35 |
当前版本 | 0.1 |
更新时间 | 2016-12-02 |
上架时间 | 2016-12-02 |
评分 | 5.00/5 共5次评分 |
开发者 | udaykiran.uday |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |