create account

"Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems! by alexpmorris

View this thread on: hive.blogpeakd.comecency.com
· @alexpmorris · (edited)
$78.29
"Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!
One of the most frequent complaints I hear about the STEEMIT user interface is how come **resteems** can't be separated out (or **toggled**) from a user's own content.  This can be especially frustrating when you're trying to catch up on a person's own posts, or even evaluating if you want to **follow** a person in the first place!  We really don't need one more impediment in the already fragile process of acquiring new interest to your STEEMIT "presence".

I've thought about trying to tackle the issue myself, although most recently, I've been a bit tied up with some other "fun" side-projects, including the Discord WhaleBoT, <a href="https://steemit.com/beyondbitcoin/@alexpmorris/steemit-world-meet-the-discord-community-s-latest-member-whalebot">which I wrote about in my last post</a>.  

Then, in the past week, @itchykitten came up with a <a href="https://steemit.com/steemit/@itchykitten/extreemit-chrome-plugin-to-hide-resteems-on-profile-pages-original-by-itchy">slick solution in the form of a Chrome extension called **exstreemit**</a> that would add a "show / hide resteems" button to each profile page that you view.  However, I anticipated from my own habits that not everyone would be all that comfortable installing the feature as an extension, even if @itchykitten <a href="https://github.com/ratacat/exstreemit">released the complete source code on github, as you can see here</a>.  From some comments I've seen, it does seem that at least a few people would rather not install this feature as an outright extension. 

So, as an "alternative solution", I decided it would still be useful to throw together another version using <a href="https://tampermonkey.net/">TamperMonkey</a>, a very popular userscript manager.  It's also available for Chrome, Microsoft Edge, Safari, Opera Next, and Firefox.  So while some people may not be so comfortable adding an entire extension to add one small button to a website, such functionality can easily be added to your TamperMonkey "Dashboard" as just another script to run, complete with source code as well so you can be quite certain there's no "funny stuff" go on.

# The Script
Once the script is installed, you will find a new "show resteems" / "hide resteems" button that will **toggle** the status of the resteems on the profile page you're looking it.
<center>![](https://steemitimages.com/DQmQYXHkLv4A3h8pZ1ntQM1FTTT6knt5EaVUo7hdj2nNAcR/button_hide-resteems.png) ⟷ ![](https://steemitimages.com/DQmaRcPxCKNV45aPVaWMbBkP7WvJatgkKqtih7ZCfVsLs4r/button_show-resteems.png)</center>


For those who are already familiar with **TamperMonkey** and want to try jumping right in, just "Create a new script" with TamperMonkey, and paste in the following code named **"Hide ReSteems"**:

```
// ==UserScript==
// @name         Hide ReSteems
// @namespace    http://tampermonkey.net/
// @version      0.12
// @description  Button to Toggle ReSTEEMs from a User's STEEMIT.com Profile and Feed Page
// @author       @alexpmorris
// @match        https://steemit.com/*
// @grant        none
// @require https://code.jquery.com/jquery-1.12.4.min.js
// @require https://greasyfork.org/scripts/6250-waitforkeyelements/code/waitForKeyElements.js?version=23756
// ==/UserScript==

(function() {
    'use strict';

    var isHiding = false;

    waitForKeyElements ("#posts_list", addReSteemToggleBtn);

    function addReSteemToggleBtn(userDiv) {

        var validUrl = document.URL.replace("https://steemit.com/","");

        if ((userDiv !== null) && (validUrl.startsWith("@")) && ((validUrl.indexOf("/")==-1) || (validUrl.endsWith("/feed"))) ) {

            isHiding = false;
            var zNode       = document.createElement ('div');
            zNode.innerHTML = '<button id="rsButton" type="button"><img id="rsBtnImg" src="https://steemitimages.com/DQmQYXHkLv4A3h8pZ1ntQM1FTTT6knt5EaVUo7hdj2nNAcR/button_hide-resteems.png"></button>';
            zNode.setAttribute ('id', 'rsContainer');
            zNode.setAttribute ('style', 'width:120px; margin-bottom:5px;');
            userDiv.prepend(zNode);

            //activate new button
            document.getElementById ("rsButton").addEventListener (
                "click", ButtonClickAction, false);

            function ButtonClickAction (zEvent) {
                if (!isHiding) {
                    $("#rsBtnImg").attr('src', 'https://steemitimages.com/DQmaRcPxCKNV45aPVaWMbBkP7WvJatgkKqtih7ZCfVsLs4r/button_show-resteems.png');
                    if (validUrl.endsWith("/feed")) $(".PostSummary__reblogged_by").parent('').hide(); else
                        $(".PostSummary__reblogged_by").filter(function () {return ($(".UserNames",this)[0] == null);}).parent('').hide();
                } else {
                    $("#rsBtnImg").attr('src', 'https://steemitimages.com/DQmQYXHkLv4A3h8pZ1ntQM1FTTT6knt5EaVUo7hdj2nNAcR/button_hide-resteems.png');
                    $(".PostSummary__reblogged_by").parent('').show();
                }
                isHiding = !isHiding;

            }

        }
    }

})();
```
#
# Where's the "Button"?
After copy/pasting the script above into a new TamperMonkey script, you should be set to go!  You'll know you're on the right track when the next STEEMIT profile page you visit looks like this:

<center>
*before hiding...*
![hide-resteems1.jpg](https://steemitimages.com/DQmXhVrG3jan2iWUXz9MgRpoiY7MJq3oxrXTZHHTNipZcEz/hide-resteems1.jpg)</center>

<center>*AFTER hiding!*
![hide-resteems2.jpg](https://steemitimages.com/DQmfAfFF9TCipdqRAr8k5uFs4uZybeRvxVw6fQ6C3JCv4QH/hide-resteems2.jpg)</center>


# TamperMonkey VIDEO HowTo...

For those of you unfamiliar with **TamperMonkey**, this terrific 2 minute video overview should get you right up to speed:
https://www.youtube.com/watch?v=D_CVBkg4HPk

# Finally...

You can also find the script code on **github.com**: https://github.com/alexpmorris/HideResteems

And on **greasyfork.org** as well: https://greasyfork.org/en/scripts/31120-hide-resteems

It's always possible I've missed something, so if you have any issues, or even just to share your experience with the "Hide ReSteems" script, please be sure to comment below!

<center>
*As always, I appreciate your upvote, your follow and all your comments!*
</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 64 others
👎  
properties (23)
authoralexpmorris
permlinkhide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what
categorysteemit
json_metadata{"tags":["steemit","steem","steemdev","beyondbitcoin","whaleshares"],"users":["itchykitten"],"image":["https://steemitimages.com/DQmQYXHkLv4A3h8pZ1ntQM1FTTT6knt5EaVUo7hdj2nNAcR/button_hide-resteems.png","https://steemitimages.com/DQmaRcPxCKNV45aPVaWMbBkP7WvJatgkKqtih7ZCfVsLs4r/button_show-resteems.png","https://steemitimages.com/DQmXhVrG3jan2iWUXz9MgRpoiY7MJq3oxrXTZHHTNipZcEz/hide-resteems1.jpg","https://steemitimages.com/DQmfAfFF9TCipdqRAr8k5uFs4uZybeRvxVw6fQ6C3JCv4QH/hide-resteems2.jpg","https://img.youtube.com/vi/D_CVBkg4HPk/0.jpg"],"links":["https://steemit.com/beyondbitcoin/@alexpmorris/steemit-world-meet-the-discord-community-s-latest-member-whalebot","https://steemit.com/steemit/@itchykitten/extreemit-chrome-plugin-to-hide-resteems-on-profile-pages-original-by-itchy","https://github.com/ratacat/exstreemit","https://tampermonkey.net/","https://www.youtube.com/watch?v=D_CVBkg4HPk","https://github.com/alexpmorris/HideResteems","https://greasyfork.org/en/scripts/31120-hide-resteems"],"app":"steemit/0.1","format":"markdown"}
created2017-07-03 19:49:18
last_update2017-07-07 17:02:27
depth0
children62
last_payout2017-07-10 19:49:18
cashout_time1969-12-31 23:59:59
total_payout_value62.269 HBD
curator_payout_value16.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,245
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,185,882
net_rshares11,480,180,561,900
author_curate_reward""
vote details (129)
@abso ·
$0.03
I love userscripts!  Thanks for this share, this is great!
👍  
properties (23)
authorabso
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t001750712z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 00:17:51
last_update2017-07-04 00:17:51
depth1
children1
last_payout2017-07-11 00:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation1,160,597,149,230
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,210,394
net_rshares5,025,792,533
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.03
thank you for your kind words, and I hope you also find it very useful!  I know I'm already finding it more useful than even I first realized! :)
👍  
properties (23)
authoralexpmorris
permlinkre-abso-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t002028464z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 00:20:27
last_update2017-07-04 00:20:27
depth2
children0
last_payout2017-07-11 00:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,210,621
net_rshares4,035,810,756
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.06
just to let everyone know, I released a slightly newer version 0.11 that properly handles those cases where "Resteemed by" is showing.
👍  ,
properties (23)
authoralexpmorris
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t002253018z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-06 00:22:54
last_update2017-07-06 00:22:54
depth1
children4
last_payout2017-07-13 00:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,458,053
net_rshares12,155,383,607
author_curate_reward""
vote details (2)
@cupid · (edited)
Hi @alexpmorris. Thanks very much for writing a script for this much desired blog function. I installed the latest 0.11 version and it works fine! 

Is it possible to apply this filter/toggle Resteemed script to our Feed/Home page as well? That way we can see new posts in our feed by users we are following, without the clutter of all their resteems as well.
👍  
properties (23)
authorcupid
permlinkre-alexpmorris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t020653835z
categorysteemit
json_metadata{"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"}
created2017-07-06 02:06:54
last_update2017-07-06 02:53:09
depth2
children3
last_payout2017-07-13 02:06:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length359
author_reputation124,831,793,137
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,465,510
net_rshares4,126,239,792
author_curate_reward""
vote details (1)
@alexpmorris ·
Hmmm I dunno... why don't you try the latest version 0.12 and let me know how it goes! 😉😁
👍  
properties (23)
authoralexpmorris
permlinkre-cupid-re-alexpmorris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t041002234z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-06 04:10:03
last_update2017-07-06 04:10:03
depth3
children2
last_payout2017-07-13 04:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,474,651
net_rshares2,499,003,932
author_curate_reward""
vote details (1)
@alexpmorris · (edited)
$0.32
Just a small update here, I've also updated the script to support golos.io as well, along with Russian buttons for non-English users.  The latest version 0.13 is available from the github.com or greasyfork.org links described in the article.  

For those on steemit who would also like to get more involved on golos.io and possibly cross-post over there as well, definitely check out @mrwang's recent post as well: <a href="https://steemit.com/money/@mrwang/you-should-really-consider-posting-on-golos-too">"You Should Really Consider Posting On Golos Too"</a>.  He explains how you can get started pretty easily just by using the "**en**" tag on your posts over there.

Cheers, and enjoy! :)
👍  
👎  
properties (23)
authoralexpmorris
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170712t172426566z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1","users":["mrwang"],"links":["https://steemit.com/money/@mrwang/you-should-really-consider-posting-on-golos-too"]}
created2017-07-12 17:24:27
last_update2017-07-12 17:44:06
depth1
children0
last_payout2017-07-19 17:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.319 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length692
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,248,356
net_rshares86,258,747,573
author_curate_reward""
vote details (2)
@applecrisp ·
$0.30
@alexpmorris & @itchykitten really great job!  Thanks for adding this much needed feature to the UI! :)
👍  , , , , ,
properties (23)
authorapplecrisp
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z
categorysteemit
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-03 20:33:21
last_update2017-07-03 20:33:21
depth1
children2
last_payout2017-07-10 20:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.292 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation2,828,526,129,552
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,190,380
net_rshares51,901,759,262
author_curate_reward""
vote details (6)
@alexpmorris ·
thank you @applecrisp!
properties (22)
authoralexpmorris
permlinkre-applecrisp-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z-20170703t205947705z
categorysteemit
json_metadata{"tags":["steemit"],"users":["applecrisp"],"app":"steemit/0.1"}
created2017-07-03 20:59:48
last_update2017-07-03 20:59:48
depth2
children0
last_payout2017-07-10 20:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,193,002
net_rshares0
@cryptocoinptrs ·
Yes TY too @applecrisp, really helps a newbee out!
👍  
properties (23)
authorcryptocoinptrs
permlinkre-applecrisp-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z-20170709t033519043z
categorysteemit
json_metadata{"tags":["steemit"],"users":["applecrisp"],"app":"steemit/0.1"}
created2017-07-09 03:35:18
last_update2017-07-09 03:35:18
depth2
children0
last_payout2017-07-16 03:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation104,898,281,393
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,822,609
net_rshares678,997,824
author_curate_reward""
vote details (1)
@bad.karma ·
I feel like it would take away value from the resteem if people are then just looking at your content and not necessarily checking out what you're into.
properties (22)
authorbad.karma
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202920760z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:29:21
last_update2017-07-03 20:29:21
depth1
children1
last_payout2017-07-10 20:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation1,177,251,995,576
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,189,939
net_rshares0
@alexpmorris ·
you have the option to easily do both, just toggle the button.  nothing better than having a choice! :)
properties (22)
authoralexpmorris
permlinkre-badkarma-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t203313022z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:33:12
last_update2017-07-03 20:33:12
depth2
children0
last_payout2017-07-10 20:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,190,367
net_rshares0
@cybercodetwins · (edited)
$0.03
sometimes I just want to see the person own's original contents so can determine to follow them to later upvote depending on the quality of their work and active they are to the community. thanx for the video how-to
👍  
properties (23)
authorcybercodetwins
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201834031z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:18:39
last_update2017-07-03 20:20:00
depth1
children1
last_payout2017-07-10 20:18:39
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation2,098,733,764,293
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,919
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
I've heard that so many times I couldn't even tell you, and that doesn't include the times I've said it to myself! lol 

hope it works well for you! :)
properties (22)
authoralexpmorris
permlinkre-cybercodetwins-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202215821z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:22:15
last_update2017-07-03 20:22:15
depth2
children0
last_payout2017-07-10 20:22:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,189,234
net_rshares0
@divyne ·
$0.04
Just a warning: Always be very careful with chrome plugins / tampermonkey scripts /whatever ... these things have way more access rights then they should have! I know, because if written some shit to mess with colleagues at work (all in good fun) .... seriously .... be careful
👍  
properties (23)
authordivyne
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t204109022z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:41:06
last_update2017-07-03 20:41:06
depth1
children1
last_payout2017-07-10 20:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation97,821,281,874
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,191,175
net_rshares5,482,682,763
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.04
that's always an excellent warning.  it's why I tried to keep the script as simple as possible so it's easy enough for people to follow and understand, if they're so inclined to do so.
👍  
properties (23)
authoralexpmorris
permlinkre-divyne-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t210835596z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 21:08:36
last_update2017-07-03 21:08:36
depth2
children0
last_payout2017-07-10 21:08:36
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,193,906
net_rshares5,942,196,202
author_curate_reward""
vote details (1)
@dksart ·
Very nice and very useful, thanks :)
[![Image of dksartFollowMeSteemit](http://i.imgur.com/rSj89qs.png)](https://steemit.com/@dksart)
properties (22)
authordksart
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t153641740z
categorysteemit
json_metadata{"tags":["steemit"],"image":["http://i.imgur.com/rSj89qs.png"],"links":["https://steemit.com/@dksart"],"app":"steemit/0.1"}
created2017-07-04 15:36:39
last_update2017-07-04 15:36:39
depth1
children0
last_payout2017-07-11 15:36:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation32,750,516,799,573
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,290,868
net_rshares0
@enjar ·
$0.03
This is why I love the scripting community. When a platform is not giving you what you want someone else comes up with a way to make it so!

I’ll give it a try later this week. Think last time I used tampermonkey someone wrote a chat room script to run certain websites.
👍  
properties (23)
authorenjar
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201050194z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:10:54
last_update2017-07-03 20:10:54
depth1
children1
last_payout2017-07-10 20:10:54
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation1,190,589,903,636,777
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,076
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
well, that takes things to a **whole other** level! lol  - this script is a bit simpler than that! :)
properties (22)
authoralexpmorris
permlinkre-enjar-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201212054z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:12:12
last_update2017-07-03 20:12:12
depth2
children0
last_payout2017-07-10 20:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,234
net_rshares0
@everittdmickey · (edited)
$0.03
_Opera Next?_
there is more than one Opera?
***
Question: how about makeing a script that allows the hiding of any or all languages of your choice?
for example...I can only read English...I have no need for spanish, chinese, or any other Language on my feed.
can't understand them...they are of no interest to me.
👍  
properties (23)
authoreverittdmickey
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t200612914z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:06:12
last_update2017-07-03 20:13:57
depth1
children7
last_payout2017-07-10 20:06:12
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length313
author_reputation237,810,557,737,590
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,187,580
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.12
I hadn't caught that myself, but yes, apparently there is! lol

>Opera Next is a parallel build of Opera, with cutting-edge features. ... You can install it and run it independently of your primary version of Opera; the two do not mix. To avoid confusion, Opera and Opera Next are distinguishable by their appearance: Distinct application icons.
👍  
properties (23)
authoralexpmorris
permlinkre-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t200842276z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:08:42
last_update2017-07-03 20:08:42
depth2
children0
last_payout2017-07-10 20:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,187,830
net_rshares18,074,893,196
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.12
believe it or not, that would actually be a lot trickier to do, since there's no "language tag" to filter out.  But of course, that's also more of an issue on the public feeds.  On your own feed, just don't follow people you can't understand! :)
👍  
properties (23)
authoralexpmorris
permlinkre-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201555287z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:15:54
last_update2017-07-03 20:15:54
depth2
children5
last_payout2017-07-10 20:15:54
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,644
net_rshares18,074,893,196
author_curate_reward""
vote details (1)
@everittdmickey ·
actually there are language tags.
they aren't always used.
on my feed I mute anything that I can't understand.
properties (22)
authoreverittdmickey
permlinkre-alexpmorris-re-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201651302z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:16:51
last_update2017-07-03 20:16:51
depth3
children4
last_payout2017-07-10 20:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation237,810,557,737,590
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,728
net_rshares0
@fairbee ·
Nice..it would help many members..thanks for sharing it with all of us.
👍  
properties (23)
authorfairbee
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t154130465z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 15:41:36
last_update2017-07-04 15:41:36
depth1
children2
last_payout2017-07-11 15:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation142,126,803,055
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,291,388
net_rshares3,199,950,382
author_curate_reward""
vote details (1)
@alexpmorris ·
glad you also found it useful and helpful! :)
properties (22)
authoralexpmorris
permlinkre-fairbee-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193506665z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 19:35:06
last_update2017-07-04 19:35:06
depth2
children1
last_payout2017-07-11 19:35:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,314,708
net_rshares0
@fairbee ·
you are welcome. I always appreciate one  helping others just like you helped with your post about 'hiding resteem'.  Happy steeming. Good luck.
👍  
properties (23)
authorfairbee
permlinkre-alexpmorris-re-fairbee-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t203059571z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 20:31:03
last_update2017-07-04 20:31:03
depth3
children0
last_payout2017-07-11 20:31:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation142,126,803,055
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,320,074
net_rshares2,285,678,844
author_curate_reward""
vote details (1)
@godo ·
Saving this
properties (22)
authorgodo
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20171210t150659093z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-10 15:07:03
last_update2017-12-10 15:07:03
depth1
children0
last_payout2017-12-17 15:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation522,256,187,287
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,004,056
net_rshares0
@heymattsokol ·
$0.03
This is an awesome feature to have. Some users have a way of resteeming way too much... makes it nearly impossible to find their real posts without this kind of tool.
👍  
properties (23)
authorheymattsokol
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205300929z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:53:00
last_update2017-07-03 20:53:00
depth1
children1
last_payout2017-07-10 20:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation76,543,947,856,347
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,192,349
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
thank you @heymattsokol, hope you'll find it very useful! :)
properties (22)
authoralexpmorris
permlinkre-heymattsokol-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205721675z
categorysteemit
json_metadata{"tags":["steemit"],"users":["heymattsokol"],"app":"steemit/0.1"}
created2017-07-03 20:57:21
last_update2017-07-03 20:57:21
depth2
children0
last_payout2017-07-10 20:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,192,772
net_rshares0
@itchykitten ·
$0.02
hell yeah Alex!!!!
👍  
properties (23)
authoritchykitten
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t224235693z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-05 22:42:36
last_update2017-07-05 22:42:36
depth1
children0
last_payout2017-07-12 22:42:36
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation6,835,842,764,599
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,450,603
net_rshares5,043,181,968
author_curate_reward""
vote details (1)
@livenowandwow ·
$0.03
You know what you are, @alexpmorris?

https://media4.giphy.com/media/3o7TKoWACSy9jjwjni/giphy.gif

That's right: you're THE man!

This has been one of main annoyances when using Steemit: how can I quickly spot just the posts authored by a specific Steemonian? Those Resteems really clutter the view. 

I had never heard of TamperMonkey, and I'm by no means a coder, but the vid tutorial was simple and straight forward, and look at my interface now:

![2017-07-04_1832.png](https://steemitimages.com/DQmRDvjiw3k2qWawDTJHEErnPcsnyu3vacgiCZHNFw9kddV/2017-07-04_1832.png)

Boom! 

Muchos gracias.
👍  
properties (23)
authorlivenowandwow
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t113328875z
categorysteemit
json_metadata{"tags":["steemit"],"users":["alexpmorris"],"image":["https://media4.giphy.com/media/3o7TKoWACSy9jjwjni/giphy.gif","https://steemitimages.com/DQmRDvjiw3k2qWawDTJHEErnPcsnyu3vacgiCZHNFw9kddV/2017-07-04_1832.png"],"app":"steemit/0.1"}
created2017-07-04 11:33:30
last_update2017-07-04 11:33:30
depth1
children2
last_payout2017-07-11 11:33:30
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length593
author_reputation1,284,313,061,815
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,264,495
net_rshares5,485,629,227
author_curate_reward""
vote details (1)
@alexpmorris ·
thanks @livenowandwow for the great comment!  Happy to see that it was so easy for you to install and get going, especially given you've never even heard of TamperMonkey!  

Also hope you'll get lots of good use out of the new "toggle" button!  I know I have, and I'm even surprised by how often I now find myself using it as well! :)
👍  
properties (23)
authoralexpmorris
permlinkre-livenowandwow-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193317810z
categorysteemit
json_metadata{"tags":["steemit"],"users":["livenowandwow"],"app":"steemit/0.1"}
created2017-07-04 19:33:18
last_update2017-07-04 19:33:18
depth2
children1
last_payout2017-07-11 19:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length334
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,314,525
net_rshares1,233,769,311
author_curate_reward""
vote details (1)
@livenowandwow ·
$0.02
You're welcome!

Been using it heavily so far. How did I ever live without it?

https://media4.giphy.com/media/l4FGjORgOyZJCzyzm/giphy.gif
👍  
properties (23)
authorlivenowandwow
permlinkre-alexpmorris-re-livenowandwow-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t122146999z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://media4.giphy.com/media/l4FGjORgOyZJCzyzm/giphy.gif"],"app":"steemit/0.1"}
created2017-07-05 12:21:48
last_update2017-07-05 12:21:48
depth3
children0
last_payout2017-07-12 12:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation1,284,313,061,815
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,390,439
net_rshares4,571,357,689
author_curate_reward""
vote details (1)
@michellectv ·
$0.03
Very cool @alexpmorris !  I was hoping there would be a feature that would separate my blog content from resteemed posts.

Thanks for contributing a solution! ;)
👍  
properties (23)
authormichellectv
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t224840593z
categorysteemit
json_metadata{"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"}
created2017-07-03 22:48:42
last_update2017-07-03 22:48:42
depth1
children2
last_payout2017-07-10 22:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation15,386,903,219,689
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,364
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
glad you like it ms @michellectv! :)
properties (22)
authoralexpmorris
permlinkre-michellectv-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t225216498z
categorysteemit
json_metadata{"tags":["steemit"],"users":["michellectv"],"app":"steemit/0.1"}
created2017-07-03 22:52:15
last_update2017-07-03 22:52:15
depth2
children1
last_payout2017-07-10 22:52:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,673
net_rshares0
@michellectv · (edited)
$0.03
lol, you're very welcome mr. @alexpmorris ... so formal!
👍  
properties (23)
authormichellectv
permlinkre-alexpmorris-re-michellectv-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t225540367z
categorysteemit
json_metadata{"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"}
created2017-07-03 22:55:39
last_update2017-07-03 22:55:54
depth3
children0
last_payout2017-07-10 22:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation15,386,903,219,689
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,942
net_rshares4,112,012,072
author_curate_reward""
vote details (1)
@minnowsupport ·
$0.03
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by alexpmorris from the Minnow Support Project.  It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, and someguy123.  The goal is to help Steemit grow by supporting Minnows and creating a social network.  Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>.  It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>

<p>If you like what we're doing please upvote this comment so we can continue to build the community account that's supporting all members.</p>
👍  
properties (23)
authorminnowsupport
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202301103z
categorysteemit
json_metadata{"tags":["steemit"],"app":"cosgrove/0.0.1rc3"}
created2017-07-03 20:23:00
last_update2017-07-03 20:23:00
depth1
children0
last_payout2017-07-10 20:23:00
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length712
author_reputation148,902,805,319,183
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,189,309
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@nlizotte ·
$0.28
Great job bud! Gunna check this out and see what can be done 😁
👍  ,
properties (23)
authornlizotte
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t010615387z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-05 01:06:15
last_update2017-07-05 01:06:15
depth1
children1
last_payout2017-07-12 01:06:15
cashout_time1969-12-31 23:59:59
total_payout_value0.216 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation986,557,788,219
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,341,452
net_rshares45,735,700,584
author_curate_reward""
vote details (2)
@alexpmorris ·
thanks, hope you get some good use out of it! :)
properties (22)
authoralexpmorris
permlinkre-nlizotte-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t012938461z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-05 01:29:39
last_update2017-07-05 01:29:39
depth2
children0
last_payout2017-07-12 01:29:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,343,054
net_rshares0
@nspart ·
This needs to be built in to Steemit as functionality. Most people will not add this script.
properties (22)
authornspart
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t204443102z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:44:57
last_update2017-07-03 20:44:57
depth1
children1
last_payout2017-07-10 20:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation141,398,544,559,268
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,191,563
net_rshares0
@alexpmorris ·
$0.04
No argument from me there, except it's been over a year and one hasn't been implemented yet.  However, if you'd be more comfortable with it, you can try using @itchykitten's Chrome Extension instead, or just wait 'til STEEMIT releases something.  

I'm just trying to give people an option in the meantime, fully open-sourced in an easy-to-follow script so they can be comfortable with it.  If you have any better ideas beyond that, I'm open to suggestions! :)

Link: https://steemit.com/steemit/@itchykitten/extreemit-chrome-plugin-to-hide-resteems-on-profile-pages-original-by-itchy
👍  
properties (23)
authoralexpmorris
permlinkre-nspart-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205651283z
categorysteemit
json_metadata{"tags":["steemit"],"users":["itchykitten"],"links":["https://steemit.com/steemit/@itchykitten/extreemit-chrome-plugin-to-hide-resteems-on-profile-pages-original-by-itchy"],"app":"steemit/0.1"}
created2017-07-03 20:56:51
last_update2017-07-03 20:56:51
depth2
children0
last_payout2017-07-10 20:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length584
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,192,722
net_rshares5,851,244,219
author_curate_reward""
vote details (1)
@progressivechef ·
$0.03
That's a great feature indeed. Very helpful when checking any users profile. Thanks
👍  
properties (23)
authorprogressivechef
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201037538z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:10:39
last_update2017-07-03 20:10:39
depth1
children2
last_payout2017-07-10 20:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation192,478,961,270,930
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,052
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@alexpmorris ·
thanks!  I hope you also find it as useful as I've been, and I literally just built it! lol
properties (22)
authoralexpmorris
permlinkre-progressivechef-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201307445z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:13:06
last_update2017-07-03 20:13:06
depth2
children1
last_payout2017-07-10 20:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,330
net_rshares0
@progressivechef ·
$0.03
That's for sure dude! Thanks for taking your time building it! Everyone will find it useful I'm sure.
👍  
properties (23)
authorprogressivechef
permlinkre-alexpmorris-re-progressivechef-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201815167z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:18:18
last_update2017-07-03 20:18:18
depth3
children0
last_payout2017-07-10 20:18:18
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation192,478,961,270,930
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,188,889
net_rshares4,568,902,302
author_curate_reward""
vote details (1)
@randowhale ·
This post received a 2.8% upvote from @randowhale thanks to @world5list!  For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
properties (22)
authorrandowhale
permlinkre-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t231846
categorysteemit
json_metadata"{"format": "markdown", "app": "randowhale/0.1"}"
created2017-07-04 23:18:48
last_update2017-07-04 23:18:48
depth1
children1
last_payout2017-07-11 23:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation47,657,457,485,459
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,334,031
net_rshares0
@alexpmorris ·
thank you @world5list and @randowhale for the kind and much appreciated upvote! :)
properties (22)
authoralexpmorris
permlinkre-randowhale-re-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t231846-20170705t003916540z
categorysteemit
json_metadata{"tags":["steemit"],"users":["world5list","randowhale"],"app":"steemit/0.1"}
created2017-07-05 00:39:15
last_update2017-07-05 00:39:15
depth2
children0
last_payout2017-07-12 00:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,339,576
net_rshares0
@readmore ·
Thanks to mumble I discovered this gem :D
👍  
properties (23)
authorreadmore
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170707t162829031z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-07 16:28:36
last_update2017-07-07 16:28:36
depth1
children1
last_payout2017-07-14 16:28:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation2,002,214,535,047
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,661,193
net_rshares3,726,308,798
author_curate_reward""
vote details (1)
@alexpmorris ·
hope you get a lot of great use out of it @readmore! :)
properties (22)
authoralexpmorris
permlinkre-readmore-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170707t165600546z
categorysteemit
json_metadata{"tags":["steemit"],"users":["readmore"],"app":"steemit/0.1"}
created2017-07-07 16:56:00
last_update2017-07-07 16:56:00
depth2
children0
last_payout2017-07-14 16:56:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,663,969
net_rshares0
@rocksg ·
Very rare tutorial . Hats off to you.
properties (22)
authorrocksg
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202620997z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 20:26:24
last_update2017-07-03 20:26:24
depth1
children0
last_payout2017-07-10 20:26:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation116,981,533,538,953
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,189,631
net_rshares0
@saffisara ·
Really great post and idea&#128522; I will check it. Thx for sharing
👍  
properties (23)
authorsaffisara
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t231438779z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-05 23:14:42
last_update2017-07-05 23:14:42
depth1
children1
last_payout2017-07-12 23:14:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation344,658,062,669,226
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,452,767
net_rshares4,126,239,792
author_curate_reward""
vote details (1)
@alexpmorris ·
thank you Sara, hope you find the script useful for yourself as well! :)
properties (22)
authoralexpmorris
permlinkre-saffisara-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t041156885z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-06 04:11:57
last_update2017-07-06 04:11:57
depth2
children0
last_payout2017-07-13 04:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,474,779
net_rshares0
@sanevys ·
$0.30
Just... thank yoy
👍  ,
properties (23)
authorsanevys
permlinkre-alexpmorris-201773t22458222z
categorysteemit
json_metadata{"tags":"steemit","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 20:05:00
last_update2017-07-03 20:05:00
depth1
children0
last_payout2017-07-10 20:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.242 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation4,531,832,776,368
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,187,467
net_rshares46,232,950,682
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @alexpmorris! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@alexpmorris) Award for the number of upvotes

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-alexpmorris-20170706t231235000z
categorysteemit
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-06 23:12:33
last_update2017-07-06 23:12:33
depth1
children0
last_payout2017-07-13 23:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length692
author_reputation38,975,615,169,260
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,578,211
net_rshares0
@theywillkillyou ·
$0.54
Really useful stuff, thanks for sharing Alex! I'd never heard of TamperMonkey before this but it looks like I'll be using it more often starting now :) The TamperMonkey HOW TO vid was a great add too
👍  ,
properties (23)
authortheywillkillyou
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t073416348z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 07:34:18
last_update2017-07-04 07:34:18
depth1
children1
last_payout2017-07-11 07:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.542 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation13,194,990,234,307
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,243,634
net_rshares83,155,908,892
author_curate_reward""
vote details (2)
@alexpmorris ·
thanks @theywillkillyou, I'm glad so many people are finding this useful, and also very easy to understand and install!  :)
properties (22)
authoralexpmorris
permlinkre-theywillkillyou-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193408656z
categorysteemit
json_metadata{"tags":["steemit"],"users":["theywillkillyou"],"app":"steemit/0.1"}
created2017-07-04 19:34:09
last_update2017-07-04 19:34:09
depth2
children0
last_payout2017-07-11 19:34:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,314,611
net_rshares0
@tvulgaris ·
$0.03
I don't like to upvote without some comment- this addresses one of those  gl;arinlgly obvious needs. Thanks. Coupled with the filter and lack of clutter of the Esteem.Life  UI, and the functionality shoots up radically.
👍  
properties (23)
authortvulgaris
permlinkre-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t161020124z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 16:09:24
last_update2017-07-04 16:09:24
depth1
children1
last_payout2017-07-11 16:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation294,326,448,157
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,294,003
net_rshares4,114,221,920
author_curate_reward""
vote details (1)
@alexpmorris ·
thank you for the comment! :)
properties (22)
authoralexpmorris
permlinkre-tvulgaris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t192942869z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 19:29:42
last_update2017-07-04 19:29:42
depth2
children0
last_payout2017-07-11 19:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation32,063,874,290,523
root_title""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,314,136
net_rshares0