Pages:
Author

Topic: [Userscript] Report to moderator on post history - page 2. (Read 977 times)

legendary
Activity: 2383
Merit: 1551
dogs are cute.
Could we also have scripts for these purposes, IF POSSIBLE of course :
 - Show a banned status on a profile if a user is banned, after getting details from seclog?
 - Ability to view trust across all boards, since a few boards hide them, including meta.
 - Have a DT button in the trust page of others to view the default trust on their account, to avoid confusion?
 - Provide accessible buttons with links for modlog, seclog etc on the top bar area next to the my messages menu?
 - A report button as well next on the top bar next to the my messages option which shows how many reports you have and what's the status of each report.

I can suggest some more later, probably.
jr. member
Activity: 34
Merit: 18
works great, just tested it  Grin
legendary
Activity: 2758
Merit: 6830
Is it possible to hide user's posts from a certain section, eg Bounties (Altcoins)?
Ignore the board and they will not show up.

Profile -> Ignore Boards Preferences -> Select “Bounties (Altcoin)”
legendary
Activity: 1484
Merit: 1653
Rêlêå§ê ¥ðµr MïñÐ
Is it possible to hide user's posts from a certain section, eg Bounties (Altcoins)?
legendary
Activity: 2184
Merit: 3134
₿uy / $ell
Great, I was waiting for this for ages.
The next one is a report button in the search result Smiley
legendary
Activity: 2940
Merit: 3030
Awesome nice thanks for that Button!
Guess reporting will be easyer now for some or the most!
 
administrator
Activity: 3738
Merit: 2948
If there's enough interest, we might turn the OP into a collection of userscripts (with small features that might actually be added to the forum in the long run if they turn out to be really useful for a lot of people).
administrator
Activity: 3738
Merit: 2948
After recent discussion about it's usefulness, I've made a small userscript to add the Report to moderator button on the Show lasts posts of this person page.

You can upload it to a user script manager (eg:GreaseMonkey for FF).
Code:
Code:
// ==UserScript==
// @name     Post history report button
// @version  1.1
// @grant    none
// @include  https://bitcointalk.org/index.php?action=profile;u=*;sa=showPosts*
// @include  https://bitcointalk.org/index.php?action=profile;threads;u=*;sa=showPosts*
// @require  https://code.jquery.com/jquery-2.2.4.min.js
// ==/UserScript==

var postLinks = $('td.middletext a:last-of-type');
var buttonLink = $("span.middletext").slice(1);

for (var i = 0; i < postLinks.length; i++) {
  var postLink = $(postLinks[i]);
  var reportLink = "Report to moderator";
  $(buttonLink[i]).prepend (reportLink);
}

Here is how it looks:


LMK if you found issues.

LE: Included to latest topics page as well.
Pages:
Jump to: