FastInterviews Extension

FastInterviews Extension

FastInterviews Extension connects you with the best people at companies to secure a first interview

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FastInterviews Extension",
  "version": "1.0",
  "description": "FastInterviews Extension connects you with the best people at companies to secure a first interview",
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://*.openai.com/*"
  ],
  "action": {
    "default_title": "Click to show an alert"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.fastinterviews.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "cookies",
    "tabs"
  ]
}