Content deleted Content added
Polygnotus (talk | contribs) redlinked userpages |
Polygnotus (talk | contribs) No edit summary Tag: Reverted |
||
Line 52:
// Find all user links in signatures
function findUserLinks() {
// Find
const links = $('#content a[href^="/wiki/User:"]:not([href*="/User:/"]):not([href*="/"]):not([href*="talk"]):not([data-ec-checked]), ' +
'#content a[href^="/w/index.php?title=User:"]:not([href*="/User:/"]):not([href*="/"]):not([href*="talk"]):not([data-ec-checked])');
console.log('Found user links:', links.length);
links.each((_, link) => console.log('User link:', $(link).text(), $(link).attr('href')));
|