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> ⟷ </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...* </center> <center>*AFTER hiding!* </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>
author | alexpmorris |
---|---|
permlink | hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what |
category | steemit |
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"} |
created | 2017-07-03 19:49:18 |
last_update | 2017-07-07 17:02:27 |
depth | 0 |
children | 62 |
last_payout | 2017-07-10 19:49:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 62.269 HBD |
curator_payout_value | 16.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,245 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,185,882 |
net_rshares | 11,480,180,561,900 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 4,891,070,559 | 1% | ||
pharesim | 0 | 90,189,565,648 | 0.02% | ||
fuzzyvest | 0 | 7,184,659,846,480 | 52% | ||
boy | 0 | 1,290,901,394 | 100% | ||
steem-id | 0 | 5,943,122,629 | 1% | ||
bue-witness | 0 | 1,574,036,248 | 100% | ||
bunny | 0 | 211,858,793 | 100% | ||
bue | 0 | 26,706,403,222 | 100% | ||
mini | 0 | 689,965,369 | 100% | ||
moon | 0 | 131,586,640 | 100% | ||
proctologic | 0 | 160,208,856 | 1% | ||
healthcare | 0 | 257,129,092 | 100% | ||
daniel.pan | 0 | 406,784,252 | 100% | ||
pnc | 0 | 3,534,034,747 | 1% | ||
helen.tan | 0 | 135,907,475 | 100% | ||
carlos-cabeza | 0 | 4,187,727,752 | 17% | ||
teamsteem | 0 | 188,400,561,405 | 1% | ||
applecrisp | 0 | 1,678,088,147 | 100% | ||
lauralemons | 0 | 378,820,779 | 0.5% | ||
hitmeasap | 0 | 14,201,803,171 | 51% | ||
livingfree | 0 | 52,114,677,448 | 2% | ||
fulltimegeek | 0 | 1,231,986,126,509 | 9% | ||
cloh76 | 0 | 189,050,123 | 0.2% | ||
diana.catherine | 0 | 406,961,470 | 0.1% | ||
raymondspeaks | 0 | 733,132,394 | 1% | ||
kendewitt | 0 | 10,917,468,835 | 10% | ||
ubg | 0 | 738,900,016 | 1% | ||
happyphoenix | 0 | 6,005,984,334 | 20% | ||
alexpmorris | 0 | 89,093,594,905 | 100% | ||
cybercodetwins | 0 | 1,339,509,198 | 100% | ||
craigslist | 0 | 173,985,779 | 100% | ||
sykochica | 0 | 74,601,249,086 | 25% | ||
stephen.king989 | 0 | 1,072,817,782 | 0.2% | ||
scaredycatguide | 0 | 63,350,368,175 | 15% | ||
razberrijam | 0 | 2,481,256,705 | 100% | ||
wakeupjohnny | 0 | 45,968,533,841 | 100% | ||
lamech-m | 0 | 199,562,366 | 1% | ||
suprepachyderm | 0 | 1,282,857,061 | 100% | ||
heretickitten | 0 | 351,965,945 | 0.2% | ||
kralizec | 0 | 432,140,006 | 0.5% | ||
patelincho | 0 | 218,067,241,665 | 100% | ||
rynow | 0 | 15,017,998,983 | 10% | ||
jhermanbeans | 0 | 377,926,721 | 0.1% | ||
everittdmickey | 0 | 18,069,884,041 | 10% | ||
worldtraveler | 0 | 137,702,394 | 0.2% | ||
greatdabu | 0 | 163,736,855,458 | 58% | ||
anritco | 0 | 11,587,249,892 | 10% | ||
lafilip | 0 | 109,415,605 | 100% | ||
starrkravenmaf | 0 | 225,429,243 | 0.3% | ||
gre3n | 0 | 53,184,802 | 0.1% | ||
nspart | 0 | 75,954,546,334 | 100% | ||
openspace | 0 | 10,802,247,571 | 100% | ||
michellectv | 0 | 7,827,002,734 | 100% | ||
janmarysmith | 0 | 1,399,318,688 | 100% | ||
pomperipossa | 0 | 301,558,649 | 0.1% | ||
evimeria | 0 | 3,257,919,033 | 100% | ||
abso | 0 | 4,279,584,560 | 100% | ||
banjo | 0 | 258,948,006 | 7.08% | ||
diggndeeper.com | 0 | 600,512,554,993 | 100% | ||
nicnicy | 0 | 1,252,600,463 | 100% | ||
fronttowardenemy | 0 | 171,509,794 | 0.1% | ||
tvulgaris | 0 | 1,459,057,630 | 100% | ||
gbenga | 0 | 76,699,871 | 1% | ||
nlizotte | 0 | 43,449,774,359 | 100% | ||
singa | 0 | 75,841,018 | 0.1% | ||
numpypython | 0 | 104,941,294 | 0.1% | ||
awesomianist | 0 | 207,043,092 | 0.1% | ||
arjane | 0 | 250,355,646 | 1% | ||
choogirl | 0 | 419,381,650 | 0.2% | ||
liberty-minded | 0 | 1,909,026,743 | 10% | ||
starsteem | 0 | 99,311,395 | 0.3% | ||
jhagi.bhai | 0 | 55,179,047 | 0.2% | ||
itchykitten | 0 | 464,413,541,080 | 42% | ||
marcusxman | 0 | 461,644,273 | 1% | ||
gindor | 0 | 266,406,327 | 0.2% | ||
sv67216721 | 0 | 2,194,092,606 | 2% | ||
abcdoctor | 0 | 69,561,205 | 1% | ||
cryptodan | 0 | 5,013,921,211 | 20% | ||
whatamidoing | 0 | 110,759,831 | 0.1% | ||
domo | 0 | 6,063,465,512 | 100% | ||
shawnfishbit | 0 | 797,622,777 | 0.1% | ||
steemchiller | 0 | 3,655,883,421 | 100% | ||
waldokikken | 0 | 75,203,123,456 | 100% | ||
beordo | 0 | 4,770,011,502 | 100% | ||
rocksg | 0 | 7,891,894,825 | 100% | ||
readmore | 0 | 30,921,486,410 | 100% | ||
thethreehugs | 0 | 0 | 100% | ||
ampm | 0 | 803,677,451 | 100% | ||
robstrijkers | 0 | 9,143,506,372 | 100% | ||
qwasert | 0 | 91,540,919 | 0.2% | ||
taica | 0 | 130,059,809 | 0.1% | ||
artedellavita | 0 | 1,133,689,506 | 100% | ||
interceptor | 0 | 640,634,395 | 100% | ||
theywillkillyou | 0 | 82,101,756,394 | 100% | ||
rublevoy | 0 | 908,281,315 | 100% | ||
casparleuzinger | 0 | 1,824,839,193 | 100% | ||
oceancoinz | 0 | 4,942,779,714 | 1% | ||
khaaaarl | 0 | 0 | 100% | ||
correctdrop | 0 | 0 | -100% | ||
erickjongo | 0 | 57,860,274 | 1% | ||
mrwanderlust | 0 | 131,506,279 | 0.1% | ||
randowhale | 0 | 395,614,090,070 | 2.8% | ||
minnowsupport | 0 | 26,083,454,145 | 1% | ||
world5list | 0 | 36,886,797,607 | 100% | ||
lenscape | 0 | 258,402,061 | 1% | ||
cupid | 0 | 2,470,372,324 | 100% | ||
enjar | 0 | 5,522,326,344 | 100% | ||
chedo | 0 | 131,175,177 | 100% | ||
saffisara | 0 | 1,791,016,429 | 100% | ||
stuntworks | 0 | 238,037,157 | 0.2% | ||
jaynie | 0 | 245,229,627 | 100% | ||
siirselim | 0 | 2,870,678,550 | 100% | ||
ausbitbot | 0 | 422,913,820 | 0.1% | ||
gpenco | 0 | 172,124,474 | 0.1% | ||
arimoon | 0 | 1,008,978,751 | 100% | ||
j-be | 0 | 1,770,329,649 | 100% | ||
livenowandwow | 0 | 1,199,577,283 | 100% | ||
flaminghedge | 0 | 88,658,224 | 1% | ||
daxed | 0 | 1,523,492,960 | 2% | ||
glex | 0 | 71,573,128 | 0.1% | ||
dksart | 0 | 965,049,359 | 100% | ||
prashant | 0 | 807,729,191 | 100% | ||
dethskulpt | 0 | 0 | 100% | ||
jatinaus | 0 | 150,890,096 | 100% | ||
stjohngo | 0 | 655,791,310 | 100% | ||
adrianmendoza | 0 | 290,503,965 | 100% | ||
rideofpassion | 0 | 383,028,156 | 100% | ||
pigomes | 0 | 237,939,976 | 100% | ||
fenya | 0 | 0 | 100% |
I love userscripts! Thanks for this share, this is great!
author | abso |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t001750712z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 00:17:51 |
last_update | 2017-07-04 00:17:51 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 00:17:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 1,160,597,149,230 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,210,394 |
net_rshares | 5,025,792,533 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 5,025,792,533 | 6% |
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! :)
author | alexpmorris |
---|---|
permlink | re-abso-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t002028464z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 00:20:27 |
last_update | 2017-07-04 00:20:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 00:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,210,621 |
net_rshares | 4,035,810,756 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abso | 0 | 4,035,810,756 | 100% |
just to let everyone know, I released a slightly newer version 0.11 that properly handles those cases where "Resteemed by" is showing.
author | alexpmorris |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t002253018z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-06 00:22:54 |
last_update | 2017-07-06 00:22:54 |
depth | 1 |
children | 4 |
last_payout | 2017-07-13 00:22:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.057 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,458,053 |
net_rshares | 12,155,383,607 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 9,627,892,848 | 11% | ||
cupid | 0 | 2,527,490,759 | 100% |
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.
author | cupid |
---|---|
permlink | re-alexpmorris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t020653835z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"} |
created | 2017-07-06 02:06:54 |
last_update | 2017-07-06 02:53:09 |
depth | 2 |
children | 3 |
last_payout | 2017-07-13 02:06:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 359 |
author_reputation | 124,831,793,137 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,465,510 |
net_rshares | 4,126,239,792 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,126,239,792 | 5% |
Hmmm I dunno... why don't you try the latest version 0.12 and let me know how it goes! 😉😁
author | alexpmorris |
---|---|
permlink | re-cupid-re-alexpmorris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t041002234z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-06 04:10:03 |
last_update | 2017-07-06 04:10:03 |
depth | 3 |
children | 2 |
last_payout | 2017-07-13 04:10:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,474,651 |
net_rshares | 2,499,003,932 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cupid | 0 | 2,499,003,932 | 100% |
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! :)
author | alexpmorris |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170712t172426566z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1","users":["mrwang"],"links":["https://steemit.com/money/@mrwang/you-should-really-consider-posting-on-golos-too"]} |
created | 2017-07-12 17:24:27 |
last_update | 2017-07-12 17:44:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-19 17:24:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.319 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 692 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,248,356 |
net_rshares | 86,258,747,573 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 86,610,239,928 | 100% | ||
correctdrop | 0 | -351,492,355 | -100% |
@alexpmorris & @itchykitten really great job! Thanks for adding this much needed feature to the UI! :)
author | applecrisp | ||||||
---|---|---|---|---|---|---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z | ||||||
category | steemit | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-07-03 20:33:21 | ||||||
last_update | 2017-07-03 20:33:21 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2017-07-10 20:33:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.292 HBD | ||||||
curator_payout_value | 0.006 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 103 | ||||||
author_reputation | 2,828,526,129,552 | ||||||
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,190,380 | ||||||
net_rshares | 51,901,759,262 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoctopus | 0 | 33,949,990,617 | 0.1% | ||
jesta | 0 | 8,251,052,028 | 0.1% | ||
alexpmorris | 0 | 4,568,902,302 | 5% | ||
abso | 0 | 4,198,326,625 | 100% | ||
redpill | 0 | 242,883,066 | 1% | ||
cryptocoinptrs | 0 | 690,604,624 | 100% |
thank you @applecrisp!
author | alexpmorris |
---|---|
permlink | re-applecrisp-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z-20170703t205947705z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["applecrisp"],"app":"steemit/0.1"} |
created | 2017-07-03 20:59:48 |
last_update | 2017-07-03 20:59:48 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:59:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,193,002 |
net_rshares | 0 |
Yes TY too @applecrisp, really helps a newbee out!
author | cryptocoinptrs |
---|---|
permlink | re-applecrisp-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-201773t163324255z-20170709t033519043z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["applecrisp"],"app":"steemit/0.1"} |
created | 2017-07-09 03:35:18 |
last_update | 2017-07-09 03:35:18 |
depth | 2 |
children | 0 |
last_payout | 2017-07-16 03:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 104,898,281,393 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,822,609 |
net_rshares | 678,997,824 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptocoinptrs | 0 | 678,997,824 | 100% |
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.
author | bad.karma |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202920760z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:29:21 |
last_update | 2017-07-03 20:29:21 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 1,177,251,995,576 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,189,939 |
net_rshares | 0 |
you have the option to easily do both, just toggle the button. nothing better than having a choice! :)
author | alexpmorris |
---|---|
permlink | re-badkarma-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t203313022z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:33:12 |
last_update | 2017-07-03 20:33:12 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,190,367 |
net_rshares | 0 |
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
author | cybercodetwins |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201834031z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:18:39 |
last_update | 2017-07-03 20:20:00 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:18:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 2,098,733,764,293 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,919 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
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! :)
author | alexpmorris |
---|---|
permlink | re-cybercodetwins-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202215821z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:22:15 |
last_update | 2017-07-03 20:22:15 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:22:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,189,234 |
net_rshares | 0 |
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
author | divyne |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t204109022z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:41:06 |
last_update | 2017-07-03 20:41:06 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 277 |
author_reputation | 97,821,281,874 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,191,175 |
net_rshares | 5,482,682,763 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 5,482,682,763 | 6% |
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.
author | alexpmorris |
---|---|
permlink | re-divyne-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t210835596z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 21:08:36 |
last_update | 2017-07-03 21:08:36 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 21:08:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,193,906 |
net_rshares | 5,942,196,202 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
domo | 0 | 5,942,196,202 | 100% |
Very nice and very useful, thanks :) [](https://steemit.com/@dksart)
author | dksart |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t153641740z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["http://i.imgur.com/rSj89qs.png"],"links":["https://steemit.com/@dksart"],"app":"steemit/0.1"} |
created | 2017-07-04 15:36:39 |
last_update | 2017-07-04 15:36:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 15:36:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 32,750,516,799,573 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,290,868 |
net_rshares | 0 |
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.
author | enjar |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201050194z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:10:54 |
last_update | 2017-07-03 20:10:54 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:10:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 270 |
author_reputation | 1,190,589,903,636,777 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,076 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
well, that takes things to a **whole other** level! lol - this script is a bit simpler than that! :)
author | alexpmorris |
---|---|
permlink | re-enjar-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201212054z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:12:12 |
last_update | 2017-07-03 20:12:12 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,234 |
net_rshares | 0 |
_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.
author | everittdmickey |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t200612914z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:06:12 |
last_update | 2017-07-03 20:13:57 |
depth | 1 |
children | 7 |
last_payout | 2017-07-10 20:06:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 237,810,557,737,590 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,187,580 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
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.
author | alexpmorris |
---|---|
permlink | re-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t200842276z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:08:42 |
last_update | 2017-07-03 20:08:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,187,830 |
net_rshares | 18,074,893,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everittdmickey | 0 | 18,074,893,196 | 10% |
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! :)
author | alexpmorris |
---|---|
permlink | re-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201555287z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:15:54 |
last_update | 2017-07-03 20:15:54 |
depth | 2 |
children | 5 |
last_payout | 2017-07-10 20:15:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.118 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,644 |
net_rshares | 18,074,893,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everittdmickey | 0 | 18,074,893,196 | 10% |
actually there are language tags. they aren't always used. on my feed I mute anything that I can't understand.
author | everittdmickey |
---|---|
permlink | re-alexpmorris-re-everittdmickey-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201651302z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:16:51 |
last_update | 2017-07-03 20:16:51 |
depth | 3 |
children | 4 |
last_payout | 2017-07-10 20:16:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 237,810,557,737,590 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,728 |
net_rshares | 0 |
Nice..it would help many members..thanks for sharing it with all of us.
author | fairbee |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t154130465z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 15:41:36 |
last_update | 2017-07-04 15:41:36 |
depth | 1 |
children | 2 |
last_payout | 2017-07-11 15:41:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 142,126,803,055 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,291,388 |
net_rshares | 3,199,950,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 3,199,950,382 | 4% |
glad you also found it useful and helpful! :)
author | alexpmorris |
---|---|
permlink | re-fairbee-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193506665z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 19:35:06 |
last_update | 2017-07-04 19:35:06 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 19:35:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,314,708 |
net_rshares | 0 |
you are welcome. I always appreciate one helping others just like you helped with your post about 'hiding resteem'. Happy steeming. Good luck.
author | fairbee |
---|---|
permlink | re-alexpmorris-re-fairbee-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t203059571z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 20:31:03 |
last_update | 2017-07-04 20:31:03 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 20:31:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 144 |
author_reputation | 142,126,803,055 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,320,074 |
net_rshares | 2,285,678,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 2,285,678,844 | 3% |
Saving this
author | godo |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20171210t150659093z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-12-10 15:07:03 |
last_update | 2017-12-10 15:07:03 |
depth | 1 |
children | 0 |
last_payout | 2017-12-17 15:07:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 522,256,187,287 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,004,056 |
net_rshares | 0 |
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.
author | heymattsokol |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205300929z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:53:00 |
last_update | 2017-07-03 20:53:00 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:53:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 166 |
author_reputation | 76,543,947,856,347 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,192,349 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
thank you @heymattsokol, hope you'll find it very useful! :)
author | alexpmorris |
---|---|
permlink | re-heymattsokol-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205721675z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["heymattsokol"],"app":"steemit/0.1"} |
created | 2017-07-03 20:57:21 |
last_update | 2017-07-03 20:57:21 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,192,772 |
net_rshares | 0 |
hell yeah Alex!!!!
author | itchykitten |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t224235693z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-05 22:42:36 |
last_update | 2017-07-05 22:42:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 22:42:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 6,835,842,764,599 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,450,603 |
net_rshares | 5,043,181,968 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 5,043,181,968 | 6% |
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:  Boom! Muchos gracias.
author | livenowandwow |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t113328875z |
category | steemit |
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"} |
created | 2017-07-04 11:33:30 |
last_update | 2017-07-04 11:33:30 |
depth | 1 |
children | 2 |
last_payout | 2017-07-11 11:33:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 593 |
author_reputation | 1,284,313,061,815 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,264,495 |
net_rshares | 5,485,629,227 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 5,485,629,227 | 7% |
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! :)
author | alexpmorris |
---|---|
permlink | re-livenowandwow-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193317810z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["livenowandwow"],"app":"steemit/0.1"} |
created | 2017-07-04 19:33:18 |
last_update | 2017-07-04 19:33:18 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 19:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 334 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,314,525 |
net_rshares | 1,233,769,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
livenowandwow | 0 | 1,233,769,311 | 100% |
You're welcome! Been using it heavily so far. How did I ever live without it? https://media4.giphy.com/media/l4FGjORgOyZJCzyzm/giphy.gif
author | livenowandwow |
---|---|
permlink | re-alexpmorris-re-livenowandwow-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t122146999z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://media4.giphy.com/media/l4FGjORgOyZJCzyzm/giphy.gif"],"app":"steemit/0.1"} |
created | 2017-07-05 12:21:48 |
last_update | 2017-07-05 12:21:48 |
depth | 3 |
children | 0 |
last_payout | 2017-07-12 12:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 1,284,313,061,815 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,390,439 |
net_rshares | 4,571,357,689 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,571,357,689 | 5% |
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! ;)
author | michellectv |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t224840593z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"} |
created | 2017-07-03 22:48:42 |
last_update | 2017-07-03 22:48:42 |
depth | 1 |
children | 2 |
last_payout | 2017-07-10 22:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 15,386,903,219,689 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,203,364 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
glad you like it ms @michellectv! :)
author | alexpmorris |
---|---|
permlink | re-michellectv-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t225216498z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["michellectv"],"app":"steemit/0.1"} |
created | 2017-07-03 22:52:15 |
last_update | 2017-07-03 22:52:15 |
depth | 2 |
children | 1 |
last_payout | 2017-07-10 22:52:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,203,673 |
net_rshares | 0 |
lol, you're very welcome mr. @alexpmorris ... so formal!
author | michellectv |
---|---|
permlink | re-alexpmorris-re-michellectv-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t225540367z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["alexpmorris"],"app":"steemit/0.1"} |
created | 2017-07-03 22:55:39 |
last_update | 2017-07-03 22:55:54 |
depth | 3 |
children | 0 |
last_payout | 2017-07-10 22:55:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 15,386,903,219,689 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,203,942 |
net_rshares | 4,112,012,072 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,112,012,072 | 5% |
<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>
author | minnowsupport |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202301103z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"cosgrove/0.0.1rc3"} |
created | 2017-07-03 20:23:00 |
last_update | 2017-07-03 20:23:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 20:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 712 |
author_reputation | 148,902,805,319,183 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,189,309 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
Great job bud! Gunna check this out and see what can be done 😁
author | nlizotte |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t010615387z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-05 01:06:15 |
last_update | 2017-07-05 01:06:15 |
depth | 1 |
children | 1 |
last_payout | 2017-07-12 01:06:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.216 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 986,557,788,219 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,341,452 |
net_rshares | 45,735,700,584 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 2,285,678,844 | 3% | ||
nlizotte | 0 | 43,450,021,740 | 100% |
thanks, hope you get some good use out of it! :)
author | alexpmorris |
---|---|
permlink | re-nlizotte-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t012938461z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-05 01:29:39 |
last_update | 2017-07-05 01:29:39 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 01:29:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,343,054 |
net_rshares | 0 |
This needs to be built in to Steemit as functionality. Most people will not add this script.
author | nspart |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t204443102z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:44:57 |
last_update | 2017-07-03 20:44:57 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 20:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 141,398,544,559,268 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,191,563 |
net_rshares | 0 |
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
author | alexpmorris |
---|---|
permlink | re-nspart-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t205651283z |
category | steemit |
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"} |
created | 2017-07-03 20:56:51 |
last_update | 2017-07-03 20:56:51 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 20:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 584 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,192,722 |
net_rshares | 5,851,244,219 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
domo | 0 | 5,851,244,219 | 100% |
That's a great feature indeed. Very helpful when checking any users profile. Thanks
author | progressivechef |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201037538z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:10:39 |
last_update | 2017-07-03 20:10:39 |
depth | 1 |
children | 2 |
last_payout | 2017-07-10 20:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 192,478,961,270,930 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,052 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
thanks! I hope you also find it as useful as I've been, and I literally just built it! lol
author | alexpmorris |
---|---|
permlink | re-progressivechef-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201307445z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:13:06 |
last_update | 2017-07-03 20:13:06 |
depth | 2 |
children | 1 |
last_payout | 2017-07-10 20:13:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,330 |
net_rshares | 0 |
That's for sure dude! Thanks for taking your time building it! Everyone will find it useful I'm sure.
author | progressivechef |
---|---|
permlink | re-alexpmorris-re-progressivechef-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t201815167z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:18:18 |
last_update | 2017-07-03 20:18:18 |
depth | 3 |
children | 0 |
last_payout | 2017-07-10 20:18:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 192,478,961,270,930 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,188,889 |
net_rshares | 4,568,902,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% |
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)!
author | randowhale |
---|---|
permlink | re-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t231846 |
category | steemit |
json_metadata | "{"format": "markdown", "app": "randowhale/0.1"}" |
created | 2017-07-04 23:18:48 |
last_update | 2017-07-04 23:18:48 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 23:18:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | 47,657,457,485,459 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,334,031 |
net_rshares | 0 |
thank you @world5list and @randowhale for the kind and much appreciated upvote! :)
author | alexpmorris |
---|---|
permlink | re-randowhale-re-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t231846-20170705t003916540z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["world5list","randowhale"],"app":"steemit/0.1"} |
created | 2017-07-05 00:39:15 |
last_update | 2017-07-05 00:39:15 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 00:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,339,576 |
net_rshares | 0 |
Thanks to mumble I discovered this gem :D
author | readmore |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170707t162829031z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-07 16:28:36 |
last_update | 2017-07-07 16:28:36 |
depth | 1 |
children | 1 |
last_payout | 2017-07-14 16:28:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 2,002,214,535,047 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,661,193 |
net_rshares | 3,726,308,798 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 3,726,308,798 | 4% |
hope you get a lot of great use out of it @readmore! :)
author | alexpmorris |
---|---|
permlink | re-readmore-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170707t165600546z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["readmore"],"app":"steemit/0.1"} |
created | 2017-07-07 16:56:00 |
last_update | 2017-07-07 16:56:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-14 16:56:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,663,969 |
net_rshares | 0 |
Very rare tutorial . Hats off to you.
author | rocksg |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170703t202620997z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 20:26:24 |
last_update | 2017-07-03 20:26:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 20:26:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 116,981,533,538,953 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,189,631 |
net_rshares | 0 |
Really great post and idea😊 I will check it. Thx for sharing
author | saffisara |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170705t231438779z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-05 23:14:42 |
last_update | 2017-07-05 23:14:42 |
depth | 1 |
children | 1 |
last_payout | 2017-07-12 23:14:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 344,658,062,669,226 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,452,767 |
net_rshares | 4,126,239,792 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,126,239,792 | 5% |
thank you Sara, hope you find the script useful for yourself as well! :)
author | alexpmorris |
---|---|
permlink | re-saffisara-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170706t041156885z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-06 04:11:57 |
last_update | 2017-07-06 04:11:57 |
depth | 2 |
children | 0 |
last_payout | 2017-07-13 04:11:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,474,779 |
net_rshares | 0 |
Just... thank yoy
author | sanevys | ||||||
---|---|---|---|---|---|---|---|
permlink | re-alexpmorris-201773t22458222z | ||||||
category | steemit | ||||||
json_metadata | {"tags":"steemit","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 20:05:00 | ||||||
last_update | 2017-07-03 20:05:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 20:05:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.242 HBD | ||||||
curator_payout_value | 0.056 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 17 | ||||||
author_reputation | 4,531,832,776,368 | ||||||
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,187,467 | ||||||
net_rshares | 46,232,950,682 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,568,902,302 | 5% | ||
sanevys | 0 | 41,664,048,380 | 100% |
Congratulations @alexpmorris! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](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)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-alexpmorris-20170706t231235000z |
category | steemit |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-06 23:12:33 |
last_update | 2017-07-06 23:12:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 23:12:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 692 |
author_reputation | 38,975,615,169,260 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,578,211 |
net_rshares | 0 |
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
author | theywillkillyou |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t073416348z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 07:34:18 |
last_update | 2017-07-04 07:34:18 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 07:34:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.542 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 13,194,990,234,307 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,243,634 |
net_rshares | 83,155,908,892 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 2,285,678,844 | 3% | ||
theywillkillyou | 0 | 80,870,230,048 | 100% |
thanks @theywillkillyou, I'm glad so many people are finding this useful, and also very easy to understand and install! :)
author | alexpmorris |
---|---|
permlink | re-theywillkillyou-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t193408656z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["theywillkillyou"],"app":"steemit/0.1"} |
created | 2017-07-04 19:34:09 |
last_update | 2017-07-04 19:34:09 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 19:34:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,314,611 |
net_rshares | 0 |
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.
author | tvulgaris |
---|---|
permlink | re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t161020124z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 16:09:24 |
last_update | 2017-07-04 16:09:24 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 16:09:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 294,326,448,157 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,294,003 |
net_rshares | 4,114,221,920 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 4,114,221,920 | 5% |
thank you for the comment! :)
author | alexpmorris |
---|---|
permlink | re-tvulgaris-re-alexpmorris-hide-resteems-just-released-a-new-and-simple-tampermonkey-script-for-you-know-what-20170704t192942869z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 19:29:42 |
last_update | 2017-07-04 19:29:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 19:29:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 32,063,874,290,523 |
root_title | ""Hide ReSteems" just Released... a new and simple TamperMonkey Script Toggles Feed & Profile ReSteems!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,314,136 |
net_rshares | 0 |