Salesforce Object Finder

This extension allows you to find out in which object is located a specific field.

Что такое Salesforce Object Finder?

Salesforce Object Finder - это расширение Chrome, разработанное Paolo Pelliccione, и его основная функция - "This extension allows you to find out in which object is located a specific field.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Salesforce Object Finder

Скачайте файлы расширений Salesforce Object Finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension allows you to find out in which object is located a specific field.                    

Основная информация о расширении

Название Salesforce Object Finder Salesforce Object Finder
ID gdofopjmbeikonciibgfbcenjohdilap
Официальный URL https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap
Описание This extension allows you to find out in which object is located a specific field.
Размер файла 120 KB
Количество установок 196
Текущая Версия 0.13
Последнее Обновление 2016-03-31
Дата публикации 2016-03-30
Рейтинг 5.00/5 Всего 9 оценок
Разработчик Paolo Pelliccione
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Object Finder",
    "description": "This extension allows you to find out in which object is located a specific field.",
    "version": "0.13",
    "icons": {
        "48": "icon.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "background",
        "cookies",
        "activeTab",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ]
}