LinkedRadar-Post Draft Editor for LinkedIn™

LinkedRadar-Post Draft Editor for LinkedIn™

Create compelling LinkedIn™ posts, preview content and saving multiple drafts. Powered by OpenAI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "128": "icons/logo.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/logo.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/addButton-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://*.linkedradar.com/*",
        "*://*.linkedin.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.linkedradar.com/*",
    "*://extensiondock.com/*"
  ],
  "version": "1.2.8",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}