getBeyond

getBeyond

getBeyond.ai is a thoughtful way to build trustworthy relationships

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "getBeyond",
  "description": "getBeyond.ai is a thoughtful way to build trustworthy relationships",
  "version": "2.5.2.4",
  "icons": {
    "128": "logo128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*.linkedin.com/"
  ],
  "permissions": [
    "storage",
    "tabs",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "linkedin.js"
      ],
      "css": [
        "sidebar.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.png",
        "assets/*.svg",
        "montserrat.ttf",
        "CountryCityData.json"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ]
}