Salesforce Field Finder

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

Vad är Salesforce Field Finder?

Salesforce Field Finder är en Chrome-tillägg utvecklad av sachin.kadian, och dess huvudfunktion är "This extension give your api name of any field you want.".

Tilläggsskärmbilder

screenshot

Ladda ner Salesforce Field Finder-förlängningens CRX-fil

Ladda ner Salesforce Field Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
Officiell webbadress https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Beskrivning This extension give your api name of any field you want.
Filstorlek 331 KB
Antal Installationer 909
Aktuell Version 1.1
Senast Uppdaterad 2015-09-03
Publiceringsdatum 2015-09-03
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare sachin.kadian
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}