Estim8.ai — shows current salary on Linkedin

This extension shows you compensation package estimates right on Linkedin profiles
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Estim8.ai — shows current salary on Linkedin",
  "description": "This extension shows you compensation package estimates right on Linkedin profiles",
  "version": "1.2",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://*.estim8.ai/*"
  ],
  "default_locale": "en",
  "action": {
    "default_title": "Estim8.ai",
    "default_icon": {
      "19": "images/icons/19.png",
      "38": "images/icons/38.png"
    }
  },
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "css": [
        "css/style.css"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "/js/functions.js",
        "/js/template.js",
        "/js/content.js"
      ]
    },
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.estim8.ai/*"
      ],
      "js": [
        "/js/estim8.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*.woff2"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ]
}