Salesforce Plus
Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.
什么是Salesforce Plus?
Salesforce Plus是由Santosh Pradhan开发的Chrome扩展程序,该扩展的主要功能是“Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.”。
扩展截图
下载Salesforce Plus扩展crx文件
下载Salesforce Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Salesforce Plues comes with a lot of features. It includes: - Schema Explore: Find all the objects in Salesforce, and the fields related to them - Code Search: List down all the Classes/Triggers/Pages/Components, and find a piece of code in just a second - Test Class Coverage: You do not need to go to 'Developer Console' to find the test coverage. Now, do it with a single button click on the Class itself Just explore, and share your feedback and comments.
扩展基本信息
名称 | |
ID | nbkfjodmmamogffmbodkdbhfdllcmdkn |
官方URL | https://chrome.google.com/webstore/detail/salesforce-plus/nbkfjodmmamogffmbodkdbhfdllcmdkn |
简介 | Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis. |
文件大小 | 337 KB |
安装次数 | 527 |
当前版本 | 1.0 |
更新时间 | 2014-12-03 |
上架时间 | 2014-12-03 |
评分 | 5.00/5 共3次评分 |
开发者 | Santosh Pradhan |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Plus", "version": "1.0", "description": "Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "images\/cloud_16.png", "48": "images\/cloud_48.png", "128": "images\/cloud_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/jquery.js", "js\/script.js", "js\/jquery.dataTables.js" ] } ], "permissions": [ "https:\/\/*.salesforce.com\/*", "cookies", "storage", "declarativeContent" ] } |