Popsicle Sticks - Random student picker

Popsicle Sticks - Random student picker

Randomly select a student in your class from any tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Popsicle Sticks - Random student picker",
  "short_name": "Popsicle Sticks",
  "version": "2.0.0",
  "description": "Randomly select a student in your class from any tab",
  "author": "Sean McPherson",
  "permissions": [
    "storage",
    "downloads"
  ],
  "background": {
    "service_worker": "src/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/views/home.html",
    "default_icon": {
      "16": "src/img/icon-16.png",
      "32": "src/img/icon-32.png",
      "48": "src/img/icon-48.png",
      "128": "src/img/icon-128.png"
    }
  },
  "homepage_url": "https://github.com/seanmcp/popsicle-sticks-extension",
  "icons": {
    "16": "src/img/icon-16.png",
    "32": "src/img/icon-32.png",
    "48": "src/img/icon-48.png",
    "128": "src/img/icon-128.png"
  },
  "manifest_version": 3
}