Hi everyone! Just like to post an API script of mine that can show art of characters in chat :) Not really seen any post about this so I created my own script. If you add this to your own scripts as a .js file. After that you just need select token and type !art in chat. (Or just create a macro for it) It helped me a lot in my games. getCharNameById = function (id) { const character = getObj("character", id); return (character) ? character.get("avatar") : ""; } on('chat:message', function(msg) { if (msg.type === 'api' && msg.content === '!art' && msg.selected) { _.each(msg.selected, (s) => { obj = getObj(msg.selected[0]._type, msg.selected[0]._id); charid = obj.get("represents") url = getCharNameById(charid) sendChat(msg.who, `${url}`); }); } }); Still working on a solution where players can just hover over tokens and that will showcase character art at left down corner but not yet sure how. Best regards, csbala!