Salesforce Field Finder

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

Co to jest Salesforce Field Finder?

Salesforce Field Finder to rozszerzenie Chrome opracowane przez sachin.kadian, a jego główną funkcją jest „This extension give your api name of any field you want.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Salesforce Field Finder

Pobierz pliki rozszerzeń Salesforce Field Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Oficjalny URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Opis This extension give your api name of any field you want.
Rozmiar pliku 331 KB
Liczba instalacji 909
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-09-03
Data Publikacji 2015-09-03
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper sachin.kadian
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}