Salesforce Plus

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

Was ist Salesforce Plus?

Salesforce Plus ist eine Chrome-Erweiterung, die von Santosh Pradhan entwickelt wurde, und ihr Hauptmerkmal ist "Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Salesforce Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salesforce Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Salesforce Plus Salesforce Plus
ID nbkfjodmmamogffmbodkdbhfdllcmdkn
Offizielle URL https://chrome.google.com/webstore/detail/salesforce-plus/nbkfjodmmamogffmbodkdbhfdllcmdkn
Beschreibung Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.
Dateigröße 337 KB
Installationsanzahl 527
Aktuelle Version 1.0
Letztes Update 2014-12-03
Veröffentlichungsdatum 2014-12-03
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Santosh Pradhan
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}