Pivo Present

Pivo Present

Give the perfect pitch. Bring presentations to life with Pivo Pod’s Auto-Tracking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.1.4",
  "manifest_version": 2,
  "minimum_chrome_version": "46",
  "icons": {
    "48": "icons/Icons/present_icon.png",
    "128": "icons/Icons/present_icon.png"
  },
  "background": {
    "page": "background/bg.html",
    "persistent": false
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "notifications",
    "activeTab",
    "desktopCapture",
    "background",
    "tabCapture",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "Pivo Present",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/ContentScript.js"
      ],
      "css": [
        "content/ContentScript.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "MacCtrl+Shift+K"
      },
      "description": "Opens Popup"
    }
  },
  "web_accessible_resources": [
    "video/video.html",
    "background/stream-window.html",
    "background/welcome.html",
    "*.js",
    "*.ttf",
    "*.woff",
    "*.png",
    "icons/*",
    "content/*",
    "*.css"
  ]
}