UOC Notifier

UOC Notifier

UOC notifier for Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "img/logo128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "__MSG_DESCRIPTION__",
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "64": "img/logo64.png",
    "128": "img/logo128.png"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "name": "__MSG_TITLE__",
  "options_page": "options.html",
  "permissions": [
    "*://*.uoc.edu/*",
    "alarms",
    "idle",
    "cookies"
  ],
  "version": "2.4.0",
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "*://*.uoc.edu/*"
      ],
      "css": [
        "theme/styles.css"
      ],
      "js": [
        "theme/uoctheme.js"
      ]
    }
  ]
}