Show - Highlighter for Google Slides

Show - Highlighter for Google Slides

Chrome Extension for showing highlights in Google Slides

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "45",
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionShortName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "1.0.7",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://docs.google.com/presentation/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/presentation/*"
      ],
      "all_frames": true,
      "js": [
        "rough.js",
        "saveSvgAsPng.js",
        "mousetrap.js",
        "script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}