Salesforce Record Downloader

Tool to download Salesforce Record Data

Что такое Salesforce Record Downloader?

Salesforce Record Downloader - это расширение Chrome, разработанное OSI Consulting, и его основная функция - "Tool to download Salesforce Record Data".

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

screenshot

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

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

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

                        This tool will help you download the current opened record in salesforce domain. This will be useful when you want to quickly share the data with external entities.
The data will be download as CSV and can be easily shared.

Upcoming Features :
- Option to Download the List View                    

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

Название Salesforce Record Downloader Salesforce Record Downloader
ID jpjacljhnlilceoacphmpdomjogoghno
Официальный URL https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno
Описание Tool to download Salesforce Record Data
Размер файла 178 KB
Количество установок 44
Текущая Версия 2.7
Последнее Обновление 2016-09-06
Дата публикации 2016-09-05
Рейтинг 5.00/5 Всего 3 оценок
Разработчик OSI Consulting
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-webstore-128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "button.css",
                "inspect-inline.css"
            ],
            "js": [
                "inspector.js",
                "button.js",
                "inspect-inline.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'",
    "description": "Tool to download Salesforce Record Data",
    "icons": {
        "128": "icon-webstore-128.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "name": "Salesforce Record Downloader",
    "permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "cookies"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.7",
    "web_accessible_resources": [
        "popup.html"
    ]
}