Examine source code of Eightfold Talent

Inspect and view changes in Eightfold Talent source codes across current and past versions
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",
  "name": "Eightfold Talent",
  "description": "Find talent faster with Eightfold!",
  "version": "4.2",
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://talent.bayer.com/*",
    "*://*.prounlimited.com/*",
    "*://*.eightfold.ai/*",
    "*://*.eightfold-eu.ai/*",
    "*://*.eightfold-gov.ai/*",
    "*://*.vscdn.net/*"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "app/background.js"
  },
  "action": {
    "default_icon": "static/img/eightfold.png",
    "default_title": "Find talent faster with Eightfold!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.indeed.com/r/*",
        "*://*.resumes.indeed.com/resume/*",
        "*://*.resumes.indeed.com/hiring/projects/*/jobseekers/*",
        "*://*.employers.indeed.com/*",
        "*://*.github.com/*",
        "*://*.angel.co/*",
        "*://*.hired.com/list/*",
        "*://*.resdex.naukri.com/*/preview*",
        "*://*.monsterindia.com/v2/resumedatabase/resume.html*",
        "*://*.employer.dice.com/ows/integratedProfile.htm*",
        "*://*.employer.careerbuilder.com/jobposter/resumes/ResumeDetails.aspx"
      ],
      "exclude_matches": [
        "*://*/_/chrome/newtab*"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/static/css/content.css",
        "/static/img/*",
        "/static/fonts/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "static/img/eightfold.png",
    "48": "static/img/eightfold.png",
    "128": "static/img/eightfold.png",
    "256": "static/img/eightfold.png"
  }
}