Shepherd - Meetings with Superpowers

Shepherd - Meetings with Superpowers

Shepherd is a B2B SaaS solution helping companies and teams adapt to the future of work by running more efficient meetings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shepherd - Meetings with Superpowers",
  "description": "Shepherd is a B2B SaaS solution helping companies and teams adapt to the future of work by running more efficient meetings.",
  "manifest_version": 2,
  "version": "0.8.1",
  "icons": {
    "16": "shepherd-icon-16-x-16.png",
    "48": "shepherd-icon-48-x-48.png",
    "128": "shepherd-icon-128-x-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "shepherd-icon-16-x-16.png",
      "48": "shepherd-icon-48-x-48.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "fonts/sf_pro_text/SF-Pro-Text-Regular.otf",
    "fonts/sf_pro_text/SF-Pro-Text-Semibold.otf"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "commands": {
    "toggle-sidebar": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Command+S"
      },
      "description": "Will open or close the Shepherd sidebar"
    },
    "toggle-sidebar2": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "MacCtrl+X"
      },
      "description": "Will also open or close the Shepherd sidebar"
    },
    "toggle-sidebar3": {
      "suggested_key": {
        "default": "Alt+O",
        "mac": "MacCtrl+O"
      },
      "description": "Will also open or close the Shepherd sidebar"
    }
  }
}