Tandem - Meet and Collaborate

Tandem - Meet and Collaborate

Schedule meetings, get on the same page, and collaborate with your team on Tandem.chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tandem - Meet and Collaborate",
  "description": "Schedule meetings, get on the same page, and collaborate with your team on Tandem.chat.",
  "version": "1.2.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon38.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.tandem.chat/*",
      "*://localhost/*"
    ]
  }
}