freelancer extension

freelancer extension

The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "freelancer extension",
  "description": "The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects.",
  "version": "3",
  "manifest_version": 2,
  "icons": {
    "16": "e27-freelancer.png",
    "48": "e27-freelancer.png",
    "128": "e27-freelancer.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.freelancer.com/projects/*"
      ],
      "js": [
        "client.js"
      ]
    },
    {
      "matches": [
        "https://www.freelancer.com/*"
      ],
      "js": [
        "wrapper.js"
      ]
    },
    {
      "matches": [
        "https://www.freelancer.com/u/*"
      ],
      "js": [
        "employerview.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}