Flamingo for LinkedIn

Flamingo for LinkedIn

Categorize your chats and keep an overview of your messages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Flamingo for LinkedIn",
  "version": "1.12.5",
  "description": "Categorize your chats and keep an overview of your messages.",
  "author": "https://github.com/LinusBolls",
  "homepage_url": "https://flamingo.tools",
  "icons": {
    "16": "assets/flamingoLogo_16.png",
    "32": "assets/flamingoLogo_32.png",
    "48": "assets/flamingoLogo_48.png",
    "128": "assets/flamingoLogo_128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "https://www.linkedin.com/"
  ],
  "content_scripts": [
    {
      "js": [
        "index.js",
        "loadGlobalFlamingoStyles.js"
      ],
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.flamingo.tools/*",
        "*://*.sentry.io/*",
        "*://localhost/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}