Salesforce Field Finder

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

Cos'è Salesforce Field Finder?

Salesforce Field Finder è un'estensione di Chrome sviluppata da sachin.kadian, e la sua funzione principale è "This extension give your api name of any field you want.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Salesforce Field Finder

Scarica i file di estensione Salesforce Field Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
URL Ufficiale https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Descrizione This extension give your api name of any field you want.
Dimensione del File 331 KB
Conteggio Installazioni 909
Versione Corrente 1.1
Ultimo Aggiornamento 2015-09-03
Data di Pubblicazione 2015-09-03
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore sachin.kadian
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}