linkedin Jobs exporter

Use this extension to save and export Linkedin jobs.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "linkedin Jobs exporter",
  "description": "Use this extension to save and export linkedin jobs.",
  "version": "1.0",
  "manifest_version": 3,
  "action": {
    "default_title": "Click here to save jobs"
  },
  "background": {
    "scripts": [
      "js/back.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "js/jquery-3.7.1.slim.min.js",
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "logo48.png",
    "48": "logo48.png",
    "64": "logo64.png",
    "128": "logo512.png",
    "512": "logo512.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "notifications"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "linkedin-exporter@vercel.app"
    }
  },
  "host_permissions": [
    "http://localhost:3000/*",
    "https://*.vercel.app/*",
    "https://*.linkedin.com/*",
    "https://sharp-pig-41.clerk.accounts.dev/*"
  ]
}