Beacons for managers

Beacons for managers

Beacons talent manager productivity tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "0.0.5",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "sidePanel",
    "scripting",
    "activeTab",
    "tabs"
  ],
  "side_panel": {
    "default_path": "src/pages/sidepanel/index.html",
    "default_icon": "icon-34.png",
    "openPanelOnActionClick": true
  },
  "host_permissions": [
    "https://*.beacons.ai/api/*",
    "https://beacons.ai/api/*",
    "https://account.localhost/*",
    "https://localhost/*",
    "https://mail.google.com/*",
    "https://outlook.live.com/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon-34.png",
    "default_title": "Beacons for Managers"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png",
        "assets/*.png",
        "assets/*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}