Character.AI legacy chats

Adds a button to create chats with the old/legacy version of Character.AI

Character.AI legacy chatsคืออะไร?

Character.AI legacy chats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย József Sallai และคุณลักษณะหลักของมันคือ "Adds a button to create chats with the old/legacy version of Character.AI"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Character.AI legacy chats

ดาวน์โหลดไฟล์ส่วนขยาย Character.AI legacy chats ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This Chrome extension adds a button on Character.AI chat pages which allows you to create new chats using the legacy/old chat interface.

**Why?**

The new chat interface is still a bit buggy and lacks some features that the old interface had, such as the ability to upload images in conversations. Some users of the app may prefer to use the old interface, either just for the missing features or because it just works better for them.

**Is this safe?**

Yes, the Chrome extension just adds a button to the web page which sends a request to the legacy chat endpoint to create a new chat. It _does_ access your authentication token from your browser's local storage, however, this is only required for the request to go through. The extension does not do anything else with your token and if you're skeptical, you can look at the source code or use a self-built version.

**Can this get me banned on c.ai?**

I don't know! They may have some logs in place to detect whenever someone uses the legacy endpoint, and what they will do with that information is completely up to them. All in all, **use the extension at your own risk**.

Realistically speaking, I don't think they would ban anyone, especially since there might still be some users who use an older version of the mobile app, which basically hits the same legacy endpoint.

**Can I use this on Firefox?**

The extension does not currently have a Firefox version, however, you can use it on any Chromium-based browser (such as Brave, Edge, or Opera).

Additionally, if you know how to work with userscripts, you can look at the source code and create a basic userscript that does the same thing.

**Can I use this on mobile?**

No, extensions are not supported in the mobile version of Chrome.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Character.AI legacy chats Character.AI legacy chats
ID ffjaddegbanepalfeabpbjlimjalecgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/characterai-legacy-chats/ffjaddegbanepalfeabpbjlimjalecgc
คำอธิบาย Adds a button to create chats with the old/legacy version of Character.AI
ขนาดไฟล์ 16.83 KB
จำนวนการติดตั้ง 2,400
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-09-02
วันที่เผยแพร่ 2023-08-14
คะแนน 4.50/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา József Sallai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jozsefsallai/c.ai-legacy-chats
URL หน้าช่วยเหลือ https://github.com/jozsefsallai/c.ai-legacy-chats/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Character.AI legacy chats",
    "short_name": "c.ai legacy",
    "description": "Adds a button to create chats with the old\/legacy version of Character.AI",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/beta.character.ai\/*",
        "https:\/\/plus.character.ai\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/beta.character.ai\/*",
                "https:\/\/plus.character.ai\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "images\/icon-128.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png"
    }
}