Examine source code of AI assistant for Linkedin

Inspect and view changes in AI assistant for Linkedin 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",
  "manifest_version": 3,
  "name": "AI assistant for Linkedin",
  "description": "Supercharge your LinkedIn experience with AI.",
  "version": "1.6.10",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmZ8wmG/JXBMyYtxd4FtKA2M6z3guIUQACdyng51sB+0yOmuuxIoHs/zV6vX5nxyVkEpqhCBAsjvxD7YKZ4Qz59QuPqK8HcmWmMkq7567+n69SUdpij26R/+dBbbD2gsjcjyNLiSWW1kuyPdkcP2rlH2nS9hDZMXXh/u00bdIzk1jLjM5ABP9FCH65gf6sUK56MaPvG8j9p0XjcD1xg/oZfEFVZL6c67y4nwYDXfnhUgWMMWgwGgtO4RnFMD8CpzzfMqCdykzbPRlK9guPJyzA+wTeqx54zyXaH3CEbv17H0HZQWS7MjPLqJLJDVFtoCkEb3Arim/ZasWLds8ua7vSwIDAQAB",
  "action": {
    "default_title": "AI assistant for Linkedin",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/16.png",
      "32": "assets/icons/32.png",
      "48": "assets/icons/48.png",
      "128": "assets/icons/128.png"
    }
  },
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.linkedin.com/home",
        "https://www.linkedin.com/",
        "https://www.linkedin.com/signup/*"
      ],
      "js": [
        "resetLinkedIn.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "resources": [
        "assets/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.ideta.io/*",
    "*://*.linkedin.com/*"
  ],
  "permissions": [
    "storage"
  ]
}