Linked CV - Website Generator

Linked CV - Website Generator

Transform your LinkedIn profile into a beautiful, responsive personal website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Linked CV",
  "name": "Linked CV - Website Generator",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Transform your LinkedIn profile into a beautiful, responsive personal website. ",
  "icons": {
    "128": "logo128.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "config.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.linkedcv.site/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "jquery-3.5.1.min.js",
        "config.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}