Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » Tampermonkey script for viewing deleted comments.....
- -Radical-
-
500+ posts
Tampermonkey script for viewing deleted comments.....
I know it's possible, I just don't know how. Is there a way to do find-replace on the HTML on the page one is viewing?
- DrKat123
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
Oh gosh plz no.
- Dylan5797
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
Deleted comments aren't sent to the client. I know it's possible, I just don't know how. Is there a way to do find-replace on the HTML on the page one is viewing?
- Smitop
-
100+ posts
Tampermonkey script for viewing deleted comments.....
They are, but they are hidden, and the content is replaced with "[removed]".Deleted comments aren't sent to the client. I know it's possible, I just don't know how. Is there a way to do find-replace on the HTML on the page one is viewing?
How to see:
- Go to https://scratch.mit.edu/users/Paddle2See/#comments-19803528
- You can tell a deleted comment was there, because scratch doesn't hide the lines between deleted comments
- Inspect element, and look at the next comment
- Look at the next “reply”
- Removed the “removed” class, after looking at the element
- See the deleted comment
- Smitop
-
100+ posts
Tampermonkey script for viewing deleted comments.....
Try this:
It shows [removed] where the comment used to be.
Go to https://scratch.mit.edu/users/Paddle2See/#comments-19803528 for a demo.
Edit: works with projects
// ==UserScript== // @name show removed comments // @version 1 // @description Shows where removed comments are // @author Smitop // @match https://scratch.mit.edu/* // @grant none // ==/UserScript== setInterval(function () { $(".removed").each(function () { $(this).removeClass("removed"); }); }, 1000);
Go to https://scratch.mit.edu/users/Paddle2See/#comments-19803528 for a demo.
Edit: works with projects
Last edited by Smitop (Jan. 14, 2016 12:32:30)
- DrKat123
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
Cool! Try this:It shows [removed] where the comment used to be.// ==UserScript== // @name show removed comments // @version 1 // @description Shows where removed comments are // @author Smitop // @match https://scratch.mit.edu/users/* // @grant none // ==/UserScript== setInterval(function () { $(".removed").each(function () { $(this).removeClass("removed"); }); }, 1000);
Go to https://scratch.mit.edu/users/Paddle2See/#comments-19803528 for a demo.
- Firedrake969
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
I think he meant that the original text isn't sent to the client.They are, but they are hidden, and the content is replaced with "[removed]".Deleted comments aren't sent to the client. I know it's possible, I just don't know how. Is there a way to do find-replace on the HTML on the page one is viewing?
- -Radical-
-
500+ posts
Tampermonkey script for viewing deleted comments.....
Yes, I was aware of the inspect-element trick, and that it was replaced with [deleted] I just wanted a tampermonkey. I'll try it out!
Last edited by -Radical- (Jan. 13, 2016 01:01:13)
- Dylan5797
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
Yes thats what i meanI think he meant that the original text isn't sent to the client.They are, but they are hidden, and the content is replaced with "[removed]".Deleted comments aren't sent to the client. I know it's possible, I just don't know how. Is there a way to do find-replace on the HTML on the page one is viewing?
- -Radical-
-
500+ posts
Tampermonkey script for viewing deleted comments.....
How this originally came up was I already knew extra lines meant deleted comments, and one day (by which I mean last night) I decided to inspect-element it. I discovered that it was a whole comment thingamajigger right there and they just had class=“comment removed” at top. So I changed it, and sure enough, it popped up.
- MegaApuTurkUltra
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
Not possible. The contents are literally "[removed]"
Last edited by MegaApuTurkUltra (Jan. 13, 2016 06:12:32)
- Jonathan50
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
But you can see the author, which is kind of cool. Not possible. The contents are literally "[removed]"
- -Radical-
-
500+ posts
Tampermonkey script for viewing deleted comments.....
But you can see the author, which is kind of cool. Not possible. The contents are literally "[removed]"
You can even report, and even reply to the comments! Also, if the comment is a reply, you can see who they replied to!
- DrKat123
-
1000+ posts
Tampermonkey script for viewing deleted comments.....
WoahBut you can see the author, which is kind of cool. Not possible. The contents are literally "[removed]"
You can even report, and even reply to the comments! Also, if the comment is a reply, you can see who they replied to!
- Discussion Forums
- » Advanced Topics
-
» Tampermonkey script for viewing deleted comments.....