Anonymous ID: 3d7bbb Oct. 4, 2023, 9:27 p.m. No.19671069   🗄️.is 🔗kun

>>19670810

>Notables spam?

>>19670815

>I am glad you said something. I thought I was losing my mind..lost in the twilight zone

FYI, this code can help. It will show you at-a-glance (picrel) that the fake Notables are from another bread.

  1. Click the "Options" in the top right (desktop; not sure on phone).

  2. Click "User JS".

  3. Paste the following into the text field.

  4. Click "Save Custom Javascript".

  5. Profit! :)

The custom Javascript to paste is from here to the end of this comment:

/ Enter your own Javascript code here... // You can include JS files from remote servers, for example: // load_js("http://example.com/script.js"); // Auto PB /$(document).ready(function () {// Get a list of all the postID's in this breadvar posts = [];var updatePosts = function () {posts = [];// Get the OP ID of this breadvar OP = parseInt($('div.post.op a.post_no:eq(1)').text());posts.push(OP);$('div.post.reply').find('a.post_no:eq(1)').each(function () {var postID = parseInt($(this).text());posts.push(postID);});};// Iterate all posts and look for links to updatevar showpbLinks = function () {$(this).find('div.body a:not([rel="nofollow"])').each(function () {var postID;if (postID = $(this).text().match(/^>>(\d+)$/))postID = parseInt(postID[1]);elsereturn;// Search the posts array for this postvar isInBread = $.inArray(postID, posts);// MAGICif (isInBread === -1) {$(this).after(' (pb)');}});};// Make it goupdatePosts();$('div.post.reply').each(showpbLinks);// allow to work with auto-reload.js, etc.$(document).on('new_post', function (e, post) {if ($(post).is('div.post.reply')) {updatePosts();$(post).each(showpbLinks);}else {updatePosts();$(post).find('div.post.reply').each(showpbLinks);}});});