Next Slide

Next Slide

Next Slide changes slides with voice commands.

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__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.0.8",
  "permissions": [
    "https://docs.google.com/presentation/*",
    "storage"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/presentation/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/materialize.css",
        "css/styles.css"
      ],
      "js": [
        "js/jquery.js",
        "contentscript.js",
        "js/materialize.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icons/19.png",
      "38": "images/icons/38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "19": "images/icons/19.png",
    "38": "images/icons/38.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  }
}