AI Social Media Post Generator - LinkedIn™

AI Social Media Post Generator - LinkedIn™

Boost your next viral loop with AI rewriting in social media and make a thoughtful comment by AI.

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": {
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "GPT Popup",
    "default_icon": {
      "128": "icons/gpt-linkedin-logo.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "./options.html",
  "commands": {
    "toggle_linkedInChatGPT": {
      "description": "Run linkedInChatGPT on the current page.",
      "suggested_key": {
        "chromeos": "Ctrl+M",
        "default": "Ctrl+M",
        "linux": "Ctrl+M",
        "mac": "Command+M",
        "windows": "Ctrl+M"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.openai.com/*"
      ],
      "js": [
        "js/chatgpt-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.openai.com/*",
        "*://*.linkedradar.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://*.openai.com/*",
    "*://*.linkedradar.com/*"
  ],
  "version": "1.4.6"
}