Scale Extension

Scale Extension v1.0 scores LinkedIn candidates via their profile PDFs.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
    ]
  }
}