Follower Insights for LinkedIn

Follower Insights for LinkedIn

Show the number of followers of a LinkedIn profile at relevant positions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Follower Insights for LinkedIn",
  "description": "Show the number of followers of a LinkedIn profile at relevant positions.",
  "version": "1.5.3.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/sw.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "alarms",
    "storage"
  ]
}