LinkedIn Job Tool

LinkedIn Job Tool

*** šŸž Bugs Fixed šŸ”Ø *** The LinkedIn Job Tool is a web extension that will provide relevant information for job seekers onā€¦

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LinkedIn Job Tool",
  "version": "1.3",
  "manifest_version": 2,
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/jobs/view/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Click here to see the LinkedIn visited job links"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs"
  ]
}