Becar.io Extension

Becar.io Extension

Better meetings for you and your team

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Better meetings for you and your team",
  "version": "0.0.1.10",
  "manifest_version": 3,
  "name": "Becar.io Extension",
  "author": "@Wu",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqiWHPkYkmVkcJvj1mbgJnVWy9kBeFzXzlc5/qJiG+BQGZ3HLe2EGfJD+9h4njd5ylJWjyW6fmAeQ3Q4XXYLXzlrRmnOj8v7iKdhkRusrtFdWzdkhVk/cZzyuD714VhlQEc10nGNxj6euE5gGSSK6D7OVW9rjM4kq6jVCRLKw+Bj9QFRLMs9wLPxxGvL8V91153DzgPSSMfXy3PDBdvTQAiYklkinM0+0I3qz8DUkIZloz/lG0/Q5WjkW+zO/o1rx7zq361TeHUE5MBbRottudVbuSXsvO5Tyr8He861L9rpqaEpj2vZ4eCwcwhOILqz+2cn17jkSci/jETdg9osb6QIDAQAB",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module",
    "persist": true
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon128.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon128.png",
        "icon48.png",
        "icon32.png",
        "icon16.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs",
    "webNavigation",
    "background"
  ],
  "host_permissions": [
    "https://calendar.google.com/calendar/*"
  ],
  "oauth2": {
    "client_id": "336480358643-kl8q7847f08ijrvn7mcl0fglq0thlo68.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}