Bridge

Bridge

Bridge - The network collaboration platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_appDesc__",
  "version": "0.0.57",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "src/assets/icons/icon-48.png"
  },
  "icons": {
    "16": "src/assets/icons/icon-16.png",
    "24": "src/assets/icons/icon-24.png",
    "64": "src/assets/icons/icon-64.png",
    "128": "src/assets/icons/icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*/*",
    "*://*.brdg.app/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/assets/icons/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}