Gheith Ghood

Gheith Ghood

Adds features and improves the look of Dr. Gheith's 439 project website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gheith Ghood",
  "version": "0.0.1",
  "description": "Adds features and improves the look of Dr. Gheith's 439 project website",
  "permissions": [
    "tabs",
    "declarativeContent",
    "identity",
    "*://*.cs.utexas.edu/~gheith/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/highcharts.js",
        "js/highcharts-more.js",
        "js/content.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "matches": [
        "https://www.cs.utexas.edu/~gheith/*"
      ]
    }
  ],
  "background": {
    "page": "html/background.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}