LEADS Comments

LEADS Comments

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.4",
  "manifest_version": 3,
  "name": "LEADS Comments",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/favicon.png"
  },
  "icons": {
    "128": "assets/favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sidebar.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.gif"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://leads-comments.web.app/*"
    ]
  }
}