evyAI - Content AI for LinkedIn using OpenAI

evyAI - Content AI for LinkedIn using OpenAI

evyAI is a LinkedIn AI Assistant that creates personalized comments, posts, and replies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "evyAI - Content AI for LinkedIn using OpenAI",
  "version": "1.4.030",
  "icons": {
    "128": "assets/Icons/icon-128.png"
  },
  "description": "evyAI is a LinkedIn AI Assistant that creates personalized comments, posts, and replies.",
  "short_name": "evyAI - AI for LinkedIn using ChatGPT",
  "permissions": [
    "tabs",
    "identity",
    "storage"
  ],
  "host_permissions": [
    "https://us-central1-gptchromeextension.cloudfunctions.net/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' 'unsafe-inline' https://apis.google.com",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
  },
  "author": "Evy AI",
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": {
      "128": "assets/Icons/icon-128.png"
    },
    "default_title": "evyAI"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*",
        "https://*.evyai.com/*",
        "http://*.evyai.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/contentScript.bundle.js",
        "assets/*"
      ],
      "matches": [
        "https://www.linkedin.com/*",
        "https://*.evyai.com/*",
        "http://*.evyai.com/*",
        "http://localhost:3000/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "776551117048-qtknk0lcqsr36tqj9t6dijj6ouuqpbmd.apps.googleusercontent.com",
    "scopes": [
      "email",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}