Examine source code of Social Magic - Supercharge Your LinkedIn

Inspect and view changes in Social Magic - Supercharge Your 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",
  "name": "Social Magic - Supercharge Your LinkedIn",
  "description": "AI-powered enhancement for your LinkedIn posts and comments.",
  "version": "1.4",
  "manifest_version": 3,
  "permissions": [],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "content.js",
        "app.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "iconwhitelarge.png",
        "iconwhite48.png",
        "iconwhite128.png",
        "iconblacklarge.png",
        "iconblack128.png",
        "icon.png"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ]
}