Salesforce Field Finder

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

What is Salesforce Field Finder?

Salesforce Field Finder is a Chrome extension developed by sachin.kadian, and its main feature is "This extension give your api name of any field you want.".

Extension Screenshots

screenshot

Download Salesforce Field Finder Extension CRX File

Download Salesforce Field Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Official URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Description This extension give your api name of any field you want.
File Size 331 KB
Installation Count 909
Current Version 1.1
Last Updated 2015-09-03
Publish Date 2015-09-03
Rating 4.00/5 Total 4 Ratings
Developer sachin.kadian
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}