Examine source code of evyAI - AI Assistant for Social Media

Inspect and view changes in evyAI - AI Assistant for Social Media source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "evyAI - AI Assistant for Social Media",
  "version": "2.2.332",
  "icons": {
    "128": "assets/Icons/icon-128.png"
  },
  "description": "evyAI is an AI Assistant that creates personalized comments, posts, and replies.",
  "short_name": "evyAI - AI Assistant for Social Media",
  "permissions": [
    "identity",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://us-central1-gptchromeextension.cloudfunctions.net/*",
    "https://www.linkedin.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' 'unsafe-inline'",
    "sandbox": "sandbox allow-scripts; script-src 'self' '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",
      "all_frames": false
    },
    {
      "matches": [
        "https://www.linkedin.com/feed/sales-navigator/*",
        "https://*.evyai.com/*",
        "http://*.evyai.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "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"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkhjwSn762nPjffYl1pB8IsYpOhGEk21hy+LpvoIHuXEAsSvtewxr7ONqPpp0Fj6Nyl3xB8rkhbDkRuvs9ORsxTmRKP0/0oXqYN+PRUG+puguimLh0wtQNBVSHuqgUUws/DezVkXESyUsk0sovkdL0lyLrCr3Nw9cQjkH3bE6A9Mn1LoXJw9zpoedjXUXAsEumfAiHm1uOPfm5ip5u1133uPvWjcRnw4OkOfwbmHEUHbMilODwgiWhNzsAN7IEax5LrcKMvplfyabSvjdvHjpGoZVdUR67KximsXvhpODKRLY4lcyYIoFV2D4bH6sjb1PC7W/Kj13dgt63vyZrdg+LQIDAQAB"
}