Nearpod Reverse

Nearpod Reverse

Teacher going too fast? Need to back up to answer the question? Well, this unofficial app can help you out!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Nearpod Reverse",
  "version": "0.0.1",
  "description": "Teacher going too fast?  Need to back up to answer the question?  Well, this unofficial app can help you out!",
  "content_scripts": [
    {
      "matches": [
        "https://app.nearpod.com/presentation?*"
      ],
      "js": [
        "needle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injector.js",
        "default-slide.jpg"
      ],
      "matches": [
        "https://app.nearpod.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.nearpod.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "48": "logo48.png",
    "128": "logo128.png"
  }
}