Salesforce Field Finder

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

ما هو Salesforce Field Finder؟

Salesforce Field Finder هو إضافة Chrome تم تطويرها بواسطة sachin.kadian، والميزة الرئيسية لها هي "This extension give your api name of any field you want.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Salesforce Field Finder

قم بتنزيل ملفات الامتداد Salesforce Field Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
            ]
        }
    ]
}