Revu LinkedIn Tool

Revu LinkedIn Tool

Select contacts from your clients LinkedIn connections and send them to Revu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Revu LinkedIn Tool",
  "version": "0.0.0.3",
  "description": "Select contacts from your clients LinkedIn connections and send them to Revu",
  "permissions": [
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://app.revu.se/"
  ],
  "icons": {
    "16": "images/revu-logo-16.png",
    "32": "images/revu-logo-32.png",
    "48": "images/revu-logo-48.png",
    "128": "images/revu-logo-128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/api.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/revu-logo-16.png",
        "images/revu-logo-32.png",
        "images/send.png"
      ]
    }
  ]
}