Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var ngWord = [
- /[3-93-9][3-93-9][歳才]/
- ,/奥[様さん方]/
- ,/[^若]妻/
- ,/(オバ|おば)さん/
- ,/不倫/
- ,/母/
- ,/夫/
- ,/レズ/
- ,/嫁/
- ,/息子/
- ,/近親/
- ,/ママ/
- ,/父/
- ,/主婦/
- ,/熟/
- ,/未亡人/
- ,/管理員に削除された/
- ];
- var a = 0;
- var td = document.querySelectorAll("li.discussionListItem");
- if (td==null) td = [];
- Array.prototype.slice.call(td).forEach(function (node) {
- t = node.querySelector("a.PreviewTooltip").textContent;
- if (ngWord.some(function (reg) {return (reg.test(t))})) {
- node.style.display = "none";
- a++;
- };
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement