SDFC Dev Console Data Exporter

Export data from the Developer Console

SDFC Dev Console Data Exporter क्या है?

SDFC Dev Console Data Exporter durgesh dhoot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export data from the Developer Console"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SDFC Dev Console Data Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}