The Sourcing Machine

The Sourcing Machine

Understand the technical background of software engineers and developers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "short_name": "The Sourcing Machine",
  "name": "The Sourcing Machine",
  "description": "Understand the technical background of software engineers and developers",
  "version": "1.0.0",
  "permissions": [
    "activeTab",
    "background",
    "declarativeContent",
    "https://www.linkedin.com/in/*"
  ],
  "icons": {
    "32": "images/logo_32.png",
    "48": "images/logo_48.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "background": {
    "scripts": [
      "js/scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/in/*"
      ],
      "js": [
        "js/scripts/linkedin.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_icon": {
      "32": "images/logo_32.png",
      "48": "images/logo_48.png"
    },
    "default_title": "LinkedIn Profile",
    "default_popup": "index.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}