inrich - Add context to LinkedIn

inrich - Add context to LinkedIn

Add to LinkedIn the missing feature power users dreamed of: adding YOUR personal info to any profile page. For free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "inrich - Add context to LinkedIn",
  "description": "Add to LinkedIn the missing feature power users dreamed of: adding YOUR personal info to any profile page. For free.",
  "version": "1.2.1",
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "src/service-workers/index.js"
  },
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://www.linkedin.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "src/content-scripts/index.js"
      ]
    }
  ]
}