Presentation Sync

Presentation Sync

Keep presentation synchronised in real-time, do a guided presentation with Google Presentation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.8.2.min.js",
        "edit.js"
      ],
      "matches": [
        "https://docs.google.com/presentation/d/*/edit*"
      ]
    },
    {
      "js": [
        "jquery-1.8.2.min.js",
        "present.js"
      ],
      "matches": [
        "https://docs.google.com/presentation/d/*/present*"
      ]
    }
  ],
  "description": "Keep presentation synchronised in real-time, do a guided presentation with Google Presentation.",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Presentation Sync",
  "options_page": "background.html",
  "page_action": {
    "default_icon": "icons/icon_16.png"
  },
  "permissions": [
    "tabs"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.1",
  "web_accessible_resources": [
    "toastr/toastr.css",
    "toastr/toastr-responsive.css",
    "jquery-1.8.2.min.js",
    "toastr/toastr.js"
  ]
}