Salesforce Field Finder

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

Apa itu Salesforce Field Finder?

Salesforce Field Finder adalah ekstensi Chrome yang dikembangkan oleh sachin.kadian, dan fitur utamanya adalah "This extension give your api name of any field you want.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Salesforce Field Finder

Unduh file ekstensi Salesforce Field Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
URL Resmi https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Deskripsi This extension give your api name of any field you want.
Ukuran File 331 KB
Jumlah Instalasi 909
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-09-03
Tanggal Publikasi 2015-09-03
Penilaian 4.00/5 Total 4 Penilaian
Pengembang sachin.kadian
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}