FlowChamp Connector Tool

FlowChamp Connector Tool

Select courses from a FlowChamp chart and automatically add them to PolyPlanner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Send to PolyPlanner",
    "default_popup": "popup.html"
  },
  "description": "Select courses from a FlowChamp chart and automatically add them to PolyPlanner.",
  "name": "FlowChamp Connector Tool",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "version": "0.1.4",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://dev.flowchamp.org/",
        "https://dev.flowchamp.org/PolyPlanner/",
        "https://flowchamp.org/",
        "http://users.csc.calpoly.edu/~tvillare/pyFlowChart/",
        "http://users.csc.calpoly.edu/~tvillare/FlowChamp/",
        "http://tannerv.com/FlowChamp/",
        "https://polyplanner.calpoly.edu/udirect/plan/edit-plan-with-roadmap.html*"
      ],
      "js": [
        "plugins/jquery.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}