x-bees

x-bees

Streamline communication within your company, boost sales & win more customers – “bee” efficient with x-bees!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0.8",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "images/icon/16.png",
    "48": "images/icon/48.png",
    "128": "images/icon/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icon/19.png",
      "48": "images/icon/48.png"
    },
    "default_title": "__MSG_extName__"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "webNavigation"
  ],
  "externally_connectable": {
    "matches": [
      "https://app.x-bees.com/*",
      "https://*.app.x-bees.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.x-bees.com/*",
        "https://*.app.x-bees.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://calendar.google.com/calendar/*",
        "https://outlook.live.com/calendar/*",
        "https://outlook.office.com/calendar/*",
        "https://outlook.office365.com/calendar/*"
      ],
      "css": [
        "/css/all.css"
      ],
      "js": [
        "js/lib/connectionStatus.js",
        "js/lib/jquery.js",
        "js/lib/uuid.js",
        "js/calendarEventContent.js"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "match_about_blank": false
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.office.com/*",
        "https://outlook.live.com/*",
        "https://outlook.office365.com/*"
      ],
      "resources": [
        "images/icon/48.png"
      ]
    }
  ],
  "manifest_version": 3
}