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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://aiarchives.org และคุณลักษณะหลักของมันคือ "This extension allows you to share your Claude, Bard, and ChatGPT conversations via URL. Visit aiarchives.org for more info!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย A.I. Archives: Share Claude, ChatGPT, Bard

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
อีเมล kuncao@aiarchives.org
ประเภทการชำระเงิน 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"
        ]
    }
}