FOCUSED: Time well spent

FOCUSED: Time well spent

Embedds FOCUSED application in Google Meeting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FOCUSED: Time well spent",
  "description": "Embedds FOCUSED application in Google Meeting",
  "version": "0.0.22",
  "manifest_version": 3,
  "icons": {
    "16": "/icons/icon-16x16.png",
    "32": "/icons/icon-32x32.png",
    "48": "/icons/icon-48x48.png",
    "128": "/icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "/icons/icon-16x16.png",
      "32": "/icons/icon-32x32.png",
      "48": "/icons/icon-48x48.png",
      "128": "/icons/icon-128x128.png"
    },
    "default_title": "FOCUSED: Time well spent"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "https://app.getfocused.team/*",
    "http://localhost:3000/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./constants.js",
        "token.js",
        "./embeds/gf/engagometer.js"
      ],
      "matches": [
        "https://app.getfocused.team/*",
        "http://localhost:3000/*"
      ]
    },
    {
      "all_frames": false,
      "js": [
        "./constants.js",
        "./embeds/google_meet/embed.js",
        "./embeds/google_meet/engagometer.js"
      ],
      "css": [
        "./embeds/google_meet/embed.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://app.getfocused.team/*",
        "https://accounts.google.com/*",
        "https://api.getfocused.team/*",
        "https://meet.google.com/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvtaCRZ6rduBeLnjy5UBkTgr9TOF3eYrSn70oNx5D/iWNoQ1mM075vcpUCeoLsgjM6eyqKUc+PYfaQrffA2VIHHalbiuuOMNNEgq+ywMpHq4dbG0oK5IUG3f44uUTnOcR/kKboLdzgD3lDmrV1C38RlDlkoLFg6TJw6IRmmg5eZMPOW4fl5v1FK2PBijJmVD9LJvyDjVWj8yp0g7fd76MEMPZMTVozDBjQ9QpX6o0WhC4OE/oU2Wgl6ojGToJRl+UpVLwAfbk+mJo3RapuhsImwG1OCEdyZl5xXkZVbuz9a/UHrYxLCNDzKjMbOIAWoXyUnN6aq/87+QUM7knOVpUuQIDAQAB"
}