Scale Extension

Scale Extension

Scale Extension v1.0 scores LinkedIn candidates via their profile PDFs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scale Extension",
  "description": "Scale Extension v1.0 scores LinkedIn candidates via their profile PDFs.",
  "version": "1.0.7",
  "browser_action": {
    "default_icon": "images/S.png"
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "web_accessible_resources": [
    "pages/login.html",
    "pages/home.html",
    "pages/candidate.html",
    "js/jquery.min.js",
    "js/lib/bootstrap/js/bootstrap.min.js",
    "images/810.svg"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "contentScript.js",
        "js/lib/bootstrap/js/bootstrap.min.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}