update to allow for phone number variations

some spam profiles vary on their formatting of the spam number, so let's do a regex test instead. also, removed some superfluous space characters.
This commit is contained in:
doppeldeveloper 2017-12-02 21:44:12 +00:00 committed by GitHub
parent a79900c9dc
commit f851e22e8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
// @namespace https://github.com/Glorfindel83/
// @description Adds a 'Destroy spammer' link for moderator on user profiles with only deleted posts.
// @author Glorfindel
// @version 0.4.2
// @version 0.4.3
// @match *://*.stackexchange.com/users/*
// @match *://*.stackoverflow.com/users/*
// @match *://*.superuser.com/users/*
@ -58,14 +58,14 @@
// Add to document
moderatorLinkElement.after(destroyLink);
};
};
// Check for keywords in spammers' profiles
$.get(document.location.href.split('?')[0] + "?tab=profile", function (data) {
if (data.contains("1-844-909-0831")) {
if (data.search(/1\D844\D909\D0831/g)) {
createDestroyLink(userID);
}
});
});
// Check for (deleted) questions and answers
var questionsPanel = $('#user-panel-questions');
@ -84,5 +84,5 @@
return;
// Create Destroy link immediately
createDestroyLink(userID);
createDestroyLink(userID);
}) ();