BRIALO - LinkedIn Commenter, Email Finder & Automation Tool

BRIALO - LinkedIn Commenter, Email Finder & Automation Tool

Extract the most active Linkedin active users from any Linkedin post and send them a connection request.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BRIALO - LinkedIn Commenter, Email Finder & Automation Tool",
  "version": "1.2.5",
  "description": "Extract the most active Linkedin active users from any Linkedin post and send them a connection request.",
  "incognito": "split",
  "action": {
    "default_popup": "popup.html",
    "default_title": "BRIALO - LinkedIn Commenter, Email Finder & Automation Tool"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "identity",
    "storage",
    "cookies"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    },
    {
      "resources": [
        "image/copyBoard.png",
        "icon.png",
        "image/send.png",
        "image/close.png",
        "image/copied.png",
        "image/brialoLogo.png"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "https://linkedinbackend.azurewebsites.net/api/*",
    "*://*.getbrialo.io/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.getbrialo.io/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ]
}