Remote for Slides

Remote for Slides

Control Google Slides on any device, remotely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "2.0.19",
  "offline_enabled": false,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "short_name": "Remote for Slides",
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://www.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/presentation/d/*",
        "https://slides.limhenry.xyz/*"
      ],
      "js": [
        "firebase-app.min.js",
        "firebase-database.min.js",
        "firebase-auth.min.js",
        "content.min.js",
        "welcome-analytics.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.limhenry.xyz/*"
    ]
  },
  "background": {
    "scripts": [
      "background.min.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "web_accessible_resources": [
    "images/logo_128.png"
  ],
  "options_page": "welcome.html"
}