OrgChart Dumper

OrgChart Dumper

Allows you to download the embedded orgchars created with orgchart.com as a CSV file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OrgChart Dumper",
  "short_name": "OrgChartDump",
  "description": "Allows you to download the embedded orgchars created with orgchart.com as a CSV file",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "https://uk1.orgchartnow.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://uk1.orgchartnow.com/*"
      ],
      "all_frames": true,
      "js": [
        "exportChart.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "defaultIcon.png",
    "default_title": "OrgChart CSV Download"
  },
  "icons": {
    "128": "defaultIcon.png"
  },
  "author": "Platon Devs"
}