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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    ]
}