GauchoMap

GauchoMap

Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1",
  "name": "GauchoMap",
  "description": "Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "author": "Shayan Sadigh",
  "background": {
    "persistent": false,
    "scripts": [
      "eventPage.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "main.js"
      ],
      "matches": [
        "https://my.sa.ucsb.edu/gold/StudentSchedule.aspx"
      ]
    }
  ],
  "permissions": [
    "https://maps.googleapis.com/*"
  ],
  "content_security_policy": "script-src 'self' https://maps.googleapis.com; object-src 'self'"
}