Salesforce Field Finder

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

Salesforce Field Finder क्या है?

Salesforce Field Finder sachin.kadian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension give your api name of any field you want."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Field Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
आधिकारिक URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
विवरण This extension give your api name of any field you want.
फ़ाइल का आकार 331 KB
स्थापना संख्या 909
वर्तमान संस्करण 1.1
अंतिम अपडेट 2015-09-03
प्रकाशन तिथि 2015-09-03
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर sachin.kadian
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}