Remotely Managed Slideshow

Remotely Managed Slideshow

Turns your browser into a slideshow/kiosk which can be remotely managed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remotely Managed Slideshow",
  "short_name": "RM Slides",
  "version": "0.6",
  "description": "Turns your browser into a slideshow/kiosk which can be remotely managed",
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "activeTab",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "options_page": "options.html",
  "web_accessible_resources": [
    "content.js"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/favicon.png",
      "24": "images/favicon_24.png",
      "32": "images/favicon_32.png",
      "48": "images/favicon_48.png",
      "128": "images/webstore_128.png"
    }
  },
  "icons": {
    "16": "images/favicon.png",
    "24": "images/favicon_24.png",
    "32": "images/favicon_32.png",
    "48": "images/favicon_48.png",
    "128": "images/webstore_128.png"
  }
}