SDFC Dev Console Data Exporter

SDFC Dev Console Data Exporter

Export data from the Developer Console

Merlin
Additional files are visible only to premium users

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": {
    "32": "logo-32.png",
    "48": "logo-48.png",
    "64": "logo-64.png",
    "128": "logo-128.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"
  ]
}