Salesforce Plus
Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.
Wat is Salesforce Plus?
Salesforce Plus is een Chrome-extensie ontwikkeld door Santosh Pradhan, en de belangrijkste functie is "Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Plus
Download Salesforce Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | nbkfjodmmamogffmbodkdbhfdllcmdkn |
Officiële URL | https://chrome.google.com/webstore/detail/salesforce-plus/nbkfjodmmamogffmbodkdbhfdllcmdkn |
Beschrijving | Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis. |
Bestandsgrootte | 337 KB |
Aantal Installaties | 527 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-12-03 |
Publicatiedatum | 2014-12-03 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Santosh Pradhan |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |