Salesforce Plus

Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.

Co je Salesforce Plus?

Salesforce Plus je rozšíření Chrome vyvinuté Santosh Pradhan, a jeho hlavní funkcí je „Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Salesforce Plus

Stáhněte si soubory rozšíření Salesforce Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Salesforce Plus Salesforce Plus
ID nbkfjodmmamogffmbodkdbhfdllcmdkn
Oficiální URL https://chrome.google.com/webstore/detail/salesforce-plus/nbkfjodmmamogffmbodkdbhfdllcmdkn
Popis Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.
Velikost souboru 337 KB
Počet instalací 527
Aktuální Verze 1.0
Poslední Aktualizace 2014-12-03
Datum Vydání 2014-12-03
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Santosh Pradhan
Typ Platby free
Podporované Jazyky 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"
    ]
}