Xprt.is

Xprt.is

Turn LinkedIn profile into the ChatGPT style conversational resume.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Xprt.is",
  "description": "Turn LinkedIn profile into the ChatGPT style conversational resume.",
  "version": "0.2.7",
  "manifest_version": 3,
  "permissions": [
    "identity",
    "scripting"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*",
    "https://*.google-analytics.com/*"
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png",
    "128": "favicon-128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "favicon-16x16.png",
      "32": "favicon-32x32.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "embedded.html"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "css": [
        "iframe-style.css"
      ]
    },
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "content-script-scraping.js"
      ]
    },
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "oauth2": {
    "client_id": "1014385570174-7heb4v72e6j5ma0ogdbl73vrnn3m3sft.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}