Salesforce Field Finder

This extension give your api name of any field you want.

Hvad er Salesforce Field Finder?

Salesforce Field Finder er en Chrome-udvidelse udviklet af sachin.kadian, og dens hovedfunktion er "This extension give your api name of any field you want.".

Udvidelsesskærmbilleder

screenshot

Download Salesforce Field Finder-udvidelses-CRX-fil

Download Salesforce Field Finder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This Extension saves your few clicks to get api name of any field. You can just choose your object name and get all the field with their api names. Search is also available in case of Large number of fields                    

Grundlæggende oplysninger om udvidelsen

Navn Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Officiel URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Beskrivelse This extension give your api name of any field you want.
Filstørrelse 331 KB
Antal Installationer 909
Nuværende Version 1.1
Senest Opdateret 2015-09-03
Udgivelsesdato 2015-09-03
Bedømmelse 4.00/5 Samlet 4 Bedømmelser
Udvikler sachin.kadian
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Field Finder",
    "description": "This extension give your api name of any field you want.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "forcetk.js",
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ]
        }
    ]
}