Co-Present

Co-Present

Allows multiple people to present the same Google Slides presentation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Co-Present",
  "description": "Allows multiple people to present the same Google Slides presentation.",
  "version": "1.0.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Co-Present"
  },
  "icons": {
    "16": "pretzel-256x256.png",
    "48": "pretzel-256x256.png",
    "128": "pretzel-256x256.png"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "./static/js/contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "copy-svgrepo-com.svg",
        "tick-svgrepo-com.svg"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}