Social AI Assistant: Twitter & Linkedin

Social AI Assistant: Twitter & Linkedin

Enhance social media interactions with AI completed replies on Twitter & Linkedin. Never run out of ideas again!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Social AI Assistant: Twitter & Linkedin",
  "description": "Enhance social media interactions with AI completed replies on Twitter & Linkedin. Never run out of ideas again!",
  "version": "0.0.12",
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "css": [
        "content.style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://linkedin.com/*",
        "https://www.linkedin.com/*"
      ],
      "css": [
        "content.style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "css": [
        "content.style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}