A.I. Archives: Share Claude, ChatGPT, Gemini, Meta

A.I. Archives: Share Claude, ChatGPT, Gemini, Meta

This extension allows you to share your Claude, Gemini, Meta and ChatGPT conversations via URL. Visit aiarchives.org for more info!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "A.I. Archives: Share Claude, ChatGPT, Gemini, Meta",
  "description": "This extension allows you to share your Claude, Gemini, Meta and ChatGPT conversations via URL. Visit aiarchives.org for more info!",
  "version": "1.1.71",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png",
      "128": "assets/icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "identity",
    "activeTab",
    "tabs",
    "webNavigation"
  ],
  "host_permissions": [
    "https://*.google.com/*",
    "https://meta.ai/*"
  ],
  "background": {
    "service_worker": "dist/login.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*",
        "https://bard.google.com/*",
        "https://gemini.google.com/*",
        "https://claude.ai/*",
        "https://www.meta.ai/*"
      ],
      "js": [
        "icons.js",
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "oauth2": {
    "client_id": "65285626724-0hh55l5spp9pg10frnvm6mdhtt2hncav.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}