Answer the question
In order to leave comments, you need to log in
How to show alt images as text in VK?
There is a need to view emoji emoticon codes in VKontakte posts. For example, here is a post:
vk.com/wall-124855981_31288
In the page code, the codes we need are written in the Alt attributes. Run the script via Tampermonkey:
$('img').each(function () {
$(this).replaceWith($('<span>').html($(this).attr('alt')));
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question