Rocket Evaluation

Rocket Evaluation

Adds evaluation templates to the context menu in Chrome for EMA and TaskStream.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rocket Evaluation",
  "short_name": "Rocket Eval",
  "version": "1.11",
  "description": "Adds evaluation templates to the context menu in Chrome for EMA and TaskStream.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "contextMenus",
    "tabs",
    "browsingData"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://ema.wgu.edu/*",
        "https://staffdev.taskstream.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/speed32.png"
  },
  "icons": {
    "16": "images/speed16.png",
    "32": "images/speed32.png",
    "64": "images/speed64.png",
    "128": "images/speed128.png"
  },
  "web_accessible_resources": [
    "images/spinner.gif"
  ],
  "manifest_version": 2
}