Human Circles AI: Easy networking with Gen AI

Human Circles AI: Easy networking with Gen AI

Generative AI making human circles more meaningful

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Generative AI making human circles more meaningful",
  "version": "1.2.0",
  "manifest_version": 3,
  "name": "Human Circles AI: Easy networking with Gen AI",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "background",
    "cookies"
  ],
  "icons": {
    "128": "Image/logo.png"
  },
  "host_permissions": [
    "https://*.linkedin.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.linkedin.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "all_frames": false,
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}