您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make Character.AI avatars load in their full resolution (400px) and quality (100%), and let them be animated when they should be. I also try to manually find sources of characters' images that are recommended to me by Character.AI. Original script: https://greasyfork.org/en/scripts/482793-always-hi-res-c-ai-avatars/code
An updated version of https://greasyfork.org/en/scripts/482793-always-hi-res-c-ai-avatars/code. It:
Sometimes, the images will not load the full-resolutions ones right away. For example, when searching, the first few results will have the 80px profile pictures. Scrolling down a bit and going back up will update them properly. Furthermore, some images on Character.AI do not have a 400px variant, for some strange reason, and can appear as just plain text. Whilst these are few, they do exist.
Note 2: Sometimes, manually-replaced images uncrop the ones uploaded on Character.AI, leading to seeing of potentially not safe content. If such is the case, please feel free to report the Characters and Character Creators on Charcater.AI itself at https://support.character.ai/requests/new
. I cannot be Character.AI's moderation, and my own reports do not seem to help. See below for a version containing only higher-resolution images from Character.AI and not external sources.
This script also manually fetches original profile pictures of characters I have come across in my recommendations. This part is network-intensive, and most likely not desired by a lot of users for the reason above. If you only want to load the profile pictures in their highest resolution and quality from Character.AI, you can simply remove that part, so, basically, using only this:
// ==UserScript==
// @name High-res animated C.AI avatars
// @namespace none
// @version 18-08-2025.66
// @description Make Character.AI avatars load in their full resolution (400px) and quality (100%), and let them be animated when they should be. Original script: https://greasyfork.org/en/scripts/482793-always-hi-res-c-ai-avatars/code
// @author Atemo Cajaku, logan.uswp
// @match https://*character.ai/*
// @icon https://yt3.ggpht.com/515uN-5u5m3gyl5FJZjlNKekL6nYw6Pdu-9kvtvaxtzsVGNFSNinjszJXWKTaa3dIqmxIjtYGw=s256
// @license 0BSD
// @grant none
// ==/UserScript==
(function() {
'use strict';
const observer = new MutationObserver(mList => {
mList.forEach(m => {
const avatar = m.target.querySelectorAll("img[src^=\"https://characterai.io\"]");
avatar.forEach(i => {
i.src = i.src.replace(
"i/80", "i/400").replace(
"i/200", "i/400").replace(
"?webp=true&anim=0", "").replace(
"?anim=0", ""
);
});
});
});
observer.observe(document.body, {attributes: false, childList: true, characterData: false, subtree: true});
})();