>>108745775
Try this:
// ==UserScript==
// @name 4chan: Fix file info section
// @namespace Violentmonkey Scripts
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAg0lEQVQ4T2NkoBAwUqifAdmA/0iG4TIYQw1M4X+96Yfh+i9l2oLY6IZgVYPiAjyG4LQAqwtA1qO5AsUAZHlcYYDVC2gBDtZL1VggK0axuQAWVRixALUBRRxnVOEKRPQoplo0glyHLzERTAdwA0BOBCUobF7AJoctoEBioIAkSo7idAAAMV1IEXeI5UQAAAAASUVORK5CYII=
// @version 1.0.0
//
// @match https://boards.4chan.org/*/thread/*
// @grant GM_addStyle
//
// @author -
// @description
// ==/UserScript==
const css = `
.post > .file > meta,
.post > .file > meta > span,
.post > .file > meta > span > a
{
display: unset !important;
visibility: visible;
}
`;
GM_addStyle(css);