Salesforce Record Downloader

Tool to download Salesforce Record Data

Salesforce Record Downloaderとは何ですか?

Salesforce Record DownloaderはOSI Consultingによって開発されたChromeの拡張機能で、その主な機能は「Tool to download Salesforce Record Data」です。

拡張機能のスクリーンショット

screenshot

Salesforce Record Downloader拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}