Google Classroom Change User

Google Classroom Change User

Switch Google Classroom user automatically depending on who has access

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/ChangeClassroom.user.js"
      ],
      "matches": [
        "https://classroom.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Switch Google Classroom user automatically depending on who has access",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "Google Classroom Change User",
  "short_name": "Classroom Change User",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.2",
  "web_accessible_resources": [
    "js/ChangeClassroom.user.js"
  ]
}