SDFC Dev Console Data Exporter

Export data from the Developer Console

什么是SDFC Dev Console Data Exporter?

SDFC Dev Console Data Exporter是由durgesh dhoot开发的Chrome扩展程序,该扩展的主要功能是“Export data from the Developer Console”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载SDFC Dev Console Data Exporter扩展crx文件

下载SDFC Dev Console Data Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Many of the times we feel a requirement to export/copy data from Salesforce Developer Console directly. There can be multiple reasons for this like:

1) User don't have API level access to use Data Exporting tools like Data Loader, Workbench etc.
2) User can be an administrator who is not so aware of such other tools available in market
3) User wants a single click solution to directly export data in CSV from the Developer console itself.

This Chrome Extension can help you to achieve this, Once this extension is installed it will be visible on the right side of your address bar, whenever you opens developer console. You just need to click on it and then it will open a popup window for you with all the data in CSV format and you can also click on the "Download CSV" link to directly download it.

NOTE:
Known Issues- Extension is not working on the new popup window, and currently you need to open the developer console in "New Tab" i.e. by using [Ctrl + Click].                    

扩展基本信息

名称 SDFC Dev Console Data Exporter SDFC Dev Console Data Exporter
ID mfcddagpdnfokfnbnoeephmfoifgdbid
官方URL https://chromewebstore.google.com/detail/sdfc-dev-console-data-exp/mfcddagpdnfokfnbnoeephmfoifgdbid
简介 Export data from the Developer Console
文件大小 99.68 KB
安装次数 5,093
当前版本 1.0
更新时间 2015-05-08
上架时间 2015-05-08
评分 3.36/5 共14次评分
开发者 durgesh dhoot
付费类型 free
支持的语言 en-US
manifest.json
{
    "name": "SDFC Dev Console Data Exporter",
    "short_name": "Console Data Exporter",
    "description": "Export data from the Developer Console",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "logo-128.png",
        "64": "logo-64.png",
        "48": "logo-48.png",
        "32": "logo-32.png"
    },
    "page_action": {
        "default_icon": "logo-128.png",
        "default_title": "Click to export data in CSV"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "jquery-2.0.3.min.js",
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/_ui\/common\/apex\/debug\/ApexCSIPage*"
            ],
            "run_at": "document_idle"
        }
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ]
}