Aspen Beautification

Aspen Beautification

Makes Aspen/X2 much easier to look at without wanting to spoon out your eyes!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Aspen Beautification",
  "description": "Makes Aspen/X2 much easier to look at without wanting to spoon out your eyes!",
  "version": "1.0",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.myfollett.com/*"
      ],
      "css": [
        "myAspen.css"
      ]
    },
    {
      "matches": [
        "https://*.myfollett.com/*/home.do"
      ],
      "js": [
        "clickThatGradesDiv.js"
      ]
    }
  ]
}