AI Resume Builder for LinkedIn™ - LinkedRadar

AI Resume Builder for LinkedIn™ - LinkedRadar

LinkedRadar - Optimize your LinkedIn profile with the power of AI and build you resume with beautifully crafted templates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "options_page": "./options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_title": "Linkedin Profile Optimization",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/icon.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://*.linkedradar.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "version": "1.1.3"
}