Seek Salary Finder

Seek Salary Finder

Opens the "What's the Salary?" website with a Seek job URL prefilled

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Seek Salary Finder",
  "description": "Opens the \"What's the Salary?\" website with a Seek job URL prefilled",
  "version": "0.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.seek.com.au/job/*",
        "https://www.seek.co.nz/job/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://www.whatsthesalary.com/"
  ]
}