Searchlight Remote for Google Slides

Searchlight Remote for Google Slides

Easily turn your smartphone into a Google Slides presentation remote

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Searchlight Remote for Google Slides",
  "version": "4.0.1",
  "description": "Easily turn your smartphone into a Google Slides presentation remote",
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/presentation/d/*"
      ],
      "css": [
        "static/content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "static/icon.png",
    "32": "static/icon.png",
    "48": "static/icon.png",
    "128": "static/icon.png"
  },
  "permissions": [
    "contextMenus"
  ]
}