Nexweave

Nexweave

Nexweave plugin to create interactive experience right from the LinkedIn profile page and Gmail Inbox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Nexweave",
  "description": "Nexweave plugin to create interactive experience right from the LinkedIn profile page and Gmail Inbox",
  "version": "1.0.19",
  "action": {
    "default_icon": "assets/icon48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.mail.google.com/*"
      ],
      "css": [
        "assets/css/content.css"
      ],
      "js": [
        "assets/vendor/js/nex.js",
        "assets/js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*",
    "https://*.mail.google.com/*"
  ]
}