Easy Comments-GPT

Easy Comments-GPT

Better solution for comment easier on LinkedIn

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Webdeclic",
  "action": {
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/global.js"
      ]
    },
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "./js/linkedin.js"
      ],
      "css": [
        "./css/linkedin.css"
      ]
    }
  ],
  "host_permissions": [
    "https://*.openai.com/*",
    "https://easy-comments-gpt.com/*"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "Easy Comments-GPT",
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "identity.email"
  ],
  "description": "Better solution for comment easier on LinkedIn",
  "version": "0.1"
}