Wraiter - Your AI Driven LinkedIn Assistant

Wraiter - Your AI Driven LinkedIn Assistant

Generate, rephrase and correct comments and posts on LinkedIn

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wraiter - Your AI Driven LinkedIn Assistant",
  "version": "0.0.3",
  "description": "Generate, rephrase and correct comments and posts on LinkedIn",
  "permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "jquery-3.7.1.min.js",
        "extension_requests.js",
        "content.js",
        "post_assistant.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "comment.html",
        "post.html",
        "ai_icon.svg"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ]
}