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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Salesforce Plus Salesforce Plus
ID nbkfjodmmamogffmbodkdbhfdllcmdkn
官方網址 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"
    ]
}