Examine source code of Mighty LinkedIn Sidebar

Inspect and view changes in Mighty LinkedIn Sidebar 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": "Mighty LinkedIn Sidebar",
  "description": "Mighty LinkedIn Sidebar",
  "version": "1.0.1",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "sidePanel"
  ],
  "host_permissions": [
    "https://*.linkedinext.com/*",
    "https://*.linkedin.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logos/128.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content-scripts/content.css"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Default Popup Title",
    "default_popup": "popup.html"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}