BbCollab Poll Notifier

BbCollab Poll Notifier

Receive notifications when surveys are published on Blackboard Collaborate Virtual Classrooms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "fr",
  "name": "BbCollab Poll Notifier",
  "description": "__MSG_extensionDescription__",
  "version": "1.1",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "notifications"
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bbcollab.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}