Wooclap for Google Slides

Wooclap for Google Slides

This extension integrates Wooclap into Google Slides. Wooclap is a collaborative web-based platform that makes your training sessions, conferences and classes more fun, interactive and effective.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "author": "Wooclap <[email protected]>",
  "browser_action": {
    "default_title": "Wooclap"
  },
  "content_scripts": [
    {
      "js": [
        "./content.js"
      ],
      "matches": [
        "*://app.wooclap.com/*",
        "*://docs.google.com/*/*/presentation/*/edit*",
        "*://docs.google.com/*/presentation/*/edit*",
        "*://docs.google.com/presentation/*/edit*",
        "*://staging.wooclap.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "./presentation.js"
      ],
      "matches": [
        "*://docs.google.com/presentation/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
  "default_locale": "en",
  "description": "This extension integrates Wooclap into Google Slides.",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "96": "icons/96x96.png",
    "128": "icons/128x128.png"
  },
  "homepage_url": "https://www.wooclap.com",
  "incognito": "spanning",
  "manifest_version": 2,
  "name": "Wooclap for Google Slides",
  "offline_enabled": false,
  "permissions": [
    "*://app.wooclap.com/*",
    "https://docs.google.com/presentation/*"
  ],
  "short_name": "Wooclap",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.3"
}