// ==UserScript==
// @name Open the link in a new tab
// @name:ru Открыть ссылку в новой вкладке
// @namespace https://shikimori.one
// @description For links
// @description:ru Для ссылки
// @author Fujitawa
// @match https://shikimori.org/animeshnik_ALT*
// @match https://shikimori.one/animeshnik_ALT*
// @grant none
// ==/UserScript==
var links = document.getElementsByTagName('a');
for (var i=0, len=links.length; i < len; i++) {
links[i].target = '_blank';
}
@test-acc