YouPitchMe for Google Slides™

YouPitchMe for Google Slides™

The video slidecast recorder for Google Slides™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouPitchMe for Google Slides™",
  "short_name": "YouPitchMe",
  "description": "The video slidecast recorder for Google Slides™",
  "version": "1.9",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/YoupitchMeLogo16.png",
    "22": "images/YoupitchMeLogo22.png",
    "32": "images/YoupitchMeLogo32.png",
    "48": "images/YoupitchMeLogo48.png",
    "128": "images/YoupitchMeLogo128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://docs.google.com/presentation/d/*",
        "*://youpitch.me/*",
        "http://localhost:5001/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://*.googleapis.com; object-src 'self'",
  "browser_action": {
    "default_icon": "images/YoupitchMeLogo128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "notifications",
    "tabCapture",
    "<all_urls>",
    "desktopCapture",
    "identity",
    "https://docs.google.com/presentation*",
    "https://youpitch.me/*",
    "http://localhost:5001/*"
  ],
  "web_accessible_resources": [
    "style.css",
    "app/js/jquery.min.js",
    "app/js/material.min.js",
    "app/js/send.js",
    "app/css/style.css",
    "app/css/material.min.css",
    "script.js"
  ]
}