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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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\/*"
            ]
        }
    ]
}