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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        ]
    }
}