Fix different things on VGD forums
目前為
// ==UserScript==
// @name VGD Fixes
// @namespace nikku
// @license MIT
// @version 0.1
// @description Fix different things on VGD forums
// @author nikku
// @match https://forum.vgd.ru/index.php?m=feed&a=bookmarks*
// @icon https://www.google.com/s2/favicons?sz=64&domain=vgd.ru
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.profiletable').forEach(function(table) {
var link = table.querySelector('.username');
link.href = link.href.replace('post/', '').replace('p.htm#pp', '#last');
});
})();