LinComment

LinComment

Suggests relevant and thoughtful comments for LinkedIn posts, helping you engage in online discussions and add valuable insights.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Suggests relevant and thoughtful comments for LinkedIn posts, helping you engage in online discussions and add valuable insights.",
  "version": "4.4.6",
  "manifest_version": 3,
  "name": "LinComment",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/favicon.png"
  },
  "icons": {
    "128": "assets/favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "sidebar.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.gif"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://lincomment-cfb0e.web.app/*"
    ]
  }
}