Content deleted Content added
Polygnotus (talk | contribs) error handling and caching |
Polygnotus (talk | contribs) redlinked userpages |
||
Line 52:
// Find all user links in signatures
function findUserLinks() {
// Find
const links = $('#content a[href^="/wiki/User:"]: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')));
Line 63:
function getUsernameFromLink(link) {
const href = $(link).attr('href');
return match ? match[1] : null;
}
|