RECEPTIONIST Chrome Extension

RECEPTIONIST Chrome Extension

This is Chrome Extension for RECEPTIONIST

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "version": "1.11.0",
  "manifest_version": 3,
  "description": "__MSG_application_description__",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "32": "images/icon-32.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "background": {
    "service_worker": "bg-loader.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "management"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.receptionist.jp/*",
        "http://localhost/*"
      ],
      "js": [
        "login.bundle.js"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "panel_ui.bundle.js",
        "intercept_data.bundle.js",
        "error_handler.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injectedInterceptionScript.js",
        "analytics.js",
        "images/icon-38.png",
        "images/logo.svg",
        "images/logo-color.svg",
        "images/icon-add.svg",
        "images/icon-remove.svg",
        "images/pic-calendar.svg",
        "images/external-link.svg",
        "images/caret-down.svg",
        "images/caret-up.svg",
        "images/times.svg",
        "images/logout_banner.jpg",
        "images/[email protected]",
        "images/[email protected]"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'none'",
    "content_scripts": "script-src 'self'; object-src 'none'"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "19": "images/icon-19.png",
      "32": "images/icon-32.png",
      "38": "images/icon-38.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_title": "Receptionist",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://*.receptionist.jp/*",
    "*://*.sentry.io/*",
    "https://*.microsoftonline.com/*",
    "https://calendar.google.com/calendar/*"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlN+VZPq4zYqHasVa8xvt8P870lo0yiiZuPVJpc4pOXgEh7SRZM1IOr1AL/ZzI+tlN5tp263hUqtZxQ5fbWQg1cXDFvzXNmscMhD4YBiqSCMeScFdrGyeaNx90A/IeigLDtvFvCY4annUMFPDLDyL1aMV/SOPo03+Bqtb8Qw3y4XtLI0WXQGGxx25/HzXiiroV3F7/5Rcn7O2HUXMktU+Rr5Q4kqD6hQZJFM+pLUH3d9t++/Wi8NWzUFbw62BA7pjxt2ziqHvazvl0wS9op6V/icedRd17j/1UU3nzi8bj9P9NoWfyGBbwS/bqXoo9b0i9SWIJfaar6UtAw8NuLjPxwIDAQAB"
}