Student Randomizer

Student Randomizer

Randomly Selects Students

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Student Randomizer",
  "version": "1.6",
  "description": "Randomly Selects Students",
  "manifest_version": 2,
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo48.png",
    "96": "images/logo96.png",
    "128": "images/logo128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Select a student!"
  },
  "permissions": [
    "storage"
  ]
}