Salesforce Field Finder

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

Co je Salesforce Field Finder?

Salesforce Field Finder je rozšíření Chrome vyvinuté sachin.kadian, a jeho hlavní funkcí je „This extension give your api name of any field you want.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Salesforce Field Finder

Stáhněte si soubory rozšíření Salesforce Field Finder 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í

                        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                    

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

Název Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Oficiální URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Popis This extension give your api name of any field you want.
Velikost souboru 331 KB
Počet instalací 909
Aktuální Verze 1.1
Poslední Aktualizace 2015-09-03
Datum Vydání 2015-09-03
Hodnocení 4.00/5 Celkem 4 Hodnocení
Vývojář sachin.kadian
Typ Platby free
Podporované Jazyky 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\/*"
            ]
        }
    ]
}