A.I. Archives: Share Claude, ChatGPT, Bard

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

什麼是A.I. Archives: Share Claude, ChatGPT, Bard?

A.I. Archives: Share Claude, ChatGPT, Bard是由https://aiarchives.org開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to share your Claude, Bard, and ChatGPT conversations via URL. Visit aiarchives.org for more info!”。

擴展截圖

screenshot
screenshot
screenshot

下載A.I. Archives: Share Claude, ChatGPT, Bard擴展crx文件

下載A.I. Archives: Share Claude, ChatGPT, Bard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Save, share, cite, and browse ChatGPT, Bard, and Claude conversations at the click of a button. Visit https://aiarchives.org/ for more info!

- Use the generated URL to create citations for ChatGPT, Bard, and Claude!
- Browse and organize your conversations on the main website
- Compare similar questions answered by multiple models, such as GPT-3.5, GPT-4, Bard, and Claude

**Sharing Private will prevent post from being shown in recent, tags, and search bar**                    

擴展基本資訊

名稱 A.I. Archives: Share Claude, ChatGPT, Bard A.I. Archives: Share Claude, ChatGPT, Bard
ID jagobfpimhagccjbkchfdilhejgfggna
官方網址 https://chromewebstore.google.com/detail/ai-archives-share-claude/jagobfpimhagccjbkchfdilhejgfggna
簡介 This extension allows you to share your Claude, Bard, and ChatGPT conversations via URL. Visit aiarchives.org for more info!
檔案大小 187 KB
安裝次數 1,178
目前版本 1.1.65
更新時間 2024-02-09
上架時間 2023-02-13
評分 4.42/5 共 33 次評分
開發者 https://aiarchives.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://aiarchives.org/
隱私政策頁面URL https://aiarchives.org/policy.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "A.I. Archives: Share Claude, ChatGPT, Bard",
    "description": "This extension allows you to share your Claude, Bard, and ChatGPT conversations via URL. Visit aiarchives.org for more info!",
    "version": "1.1.65",
    "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\/*"
    ],
    "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:\/\/bard.google.com\/*",
                "https:\/\/gemini.google.com\/*",
                "https:\/\/claude.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"
        ]
    }
}