Salesforce Field Finder

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

Wat is Salesforce Field Finder?

Salesforce Field Finder is een Chrome-extensie ontwikkeld door sachin.kadian, en de belangrijkste functie is "This extension give your api name of any field you want.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Salesforce Field Finder

Download Salesforce Field Finder-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

                        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                    

Basisinformatie over de Extensie

Naam Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Officiële URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Beschrijving This extension give your api name of any field you want.
Bestandsgrootte 331 KB
Aantal Installaties 909
Huidige Versie 1.1
Laatst Bijgewerkt 2015-09-03
Publicatiedatum 2015-09-03
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar sachin.kadian
Betalingswijze free
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}