AccessSyracuse

AccessSyracuse

Chrome Tab Extension for Syracuse University Students

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AccessSyracuse",
  "version": "1.3.5",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/preloader.js",
        "js/slider.js",
        "js/modifyDisplay.js",
        "js/weather.js",
        "js/clock.js",
        "js/sulibrary.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.googleapis.com/calendar/v3/calendars/; object-src 'self'",
  "browser_action": {
    "default_icon": "img/su-square.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/su-square.png",
    "48": "img/su-square.png",
    "128": "img/su-square.png"
  },
  "description": "Chrome Tab Extension for Syracuse University Students",
  "permissions": [
    "storage"
  ]
}