7 years ago*

Comment has been collapsed.

Console says:
ERROR: Execution of script 'RaChart™ Enhancer' failed! Cannot read property 'previousElementSibling' of null
:(

4 years ago
Permalink

Comment has been collapsed.

Same here, hope this will be fixed. Because i love RaChart, it's so helpful.

4 years ago
Permalink

Comment has been collapsed.

Edit 3

The problem has now been fixed in the official version.

  • Go to the dash board
  • Press the value in the 'Last Updated' column. It should trigger an update

The version number is now 0.40.1 (was 0.40.0)

You may have to restart the plugin or the browser.


Old text

A similar fix as found in https://www.steamgifts.com/discussion/TDyzv/add-on-enhanced-steamgifts-steamtrades-esgst-v859/search?page=95#YohJ1Nd

In my case change

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions']");

to

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions/subscribed']");

in my case at line 790.

I can't give support on this if you don't understand how to fix it

Edit 1: I access the code via

  1. Tampermonkey / Dashboard
  2. RaChart™ Enhancer / Edit option
  3. Make the change and save

Edit 2: As stated by ashesnbones in a comment below, the change above only works if you already are logged into Steam Gifts.

You can change the code to

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions']");
    if (discDropdown === null) {
         discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions/subscribed']");
    }
4 years ago*
Permalink

Comment has been collapsed.

That brings back the RaChart in the discussion dropdown but when you actually enter a topic with a chart in it, nothing will be highlighted.

Thanks anyway for trying.

Edit: Whoops, nevermind, it looks like it's working fine after reinstalling RaChart and editing again, thanks for sharing.

4 years ago*
Permalink

Comment has been collapsed.

Had to reinstall, too and now it works. Thank you both!

4 years ago
Permalink

Comment has been collapsed.

It works, thanks!!

I initially removed the whole check and it worked anyways for the purpose of highlighting owned games in charts, but I don't know if I broke anything in the process. This is probably the proper fix :D

4 years ago
Permalink

Comment has been collapsed.

Yeah, i probably also did something wrong the first time but second time it worked out. ;)

4 years ago
Permalink

Comment has been collapsed.

Thanks! =)

4 years ago
Permalink

Comment has been collapsed.

Thank you!

4 years ago
Permalink

Comment has been collapsed.

Thanks!

4 years ago
Permalink

Comment has been collapsed.

Thank you very much!

4 years ago
Permalink

Comment has been collapsed.

Many thanks, this worked for me. :) Just remember to do File > Save after the edit.

4 years ago
Permalink

Comment has been collapsed.

Thank you for providing the fix, worked like a charm :)

4 years ago
Permalink

Comment has been collapsed.

Thanks!

4 years ago
Permalink

Comment has been collapsed.

You're a life saver, thanks!

4 years ago
Permalink

Comment has been collapsed.

Thanks a lot!

4 years ago
Permalink

Comment has been collapsed.

this worked great for me, thanks

4 years ago
Permalink

Comment has been collapsed.

Thanks, fix worked for me

4 years ago
Permalink

Comment has been collapsed.

Another +1
Thanks a bunch for the fix man, works like a charm ^^

4 years ago
Permalink

Comment has been collapsed.

Thanks yderlig. One more change though. The original code works when logged out, but when logged in, your modification works. But then the other doesn't work. So, to cover both cases, this can be used instead:

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions']");
    if (discDropdown === null) {
        discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions/subscribed']");
    }
4 years ago
Permalink

Comment has been collapsed.

Thank you for that. I have updated the entry with this information.

4 years ago
Permalink

Comment has been collapsed.

Thanks...this worked for me This is now running in Opera GX as well. :)

4 years ago
Permalink

Comment has been collapsed.

Can someone help me? My Tampermonkey "Edit" window seems broken, it's not showing me the script text, the bottom of the page is empty. I can only see a very small edit white line that I can't see how to expand :(

View attached image.
4 years ago
Permalink

Comment has been collapsed.

Sorry - I have tried Tampermonkey in both Chrome and Firefox - and I could edit in both.

You can try:

  • disable other plugins in your browser
  • Greasemonkey instead of Tampermonkey
  • different browser
4 years ago
Permalink

Comment has been collapsed.

solved my issue aswell, kudos!

4 years ago
Permalink

Comment has been collapsed.

Thank you!

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Thank you for the fix.

4 years ago
Permalink

Comment has been collapsed.

Crashes on

if (discDropdown.previousElementSibling === null) {

because

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions']");

is null due to different URL of a button.

<a class="nav__button nav__button--is-dropdown" href="/discussions/subscribed">Discussions</a>

Fixed it by changing href= to href^=

var discDropdown = document.querySelector("a[class~='nav__button'][href^='/discussions']");
4 years ago
Permalink

Comment has been collapsed.

I wish it would be updated or someone uploaded a new fixed version.

4 years ago
Permalink

Comment has been collapsed.

It didn't work perfectly, but now it doesn't work at all. There is no RaChart Enhancer menu option in Discussion :( What can I do?

4 years ago
Permalink

Comment has been collapsed.

Adding together a few of the posts above, go to Tampermonkey dashboard to edit the script, use the Find(Ctrl+F) and replace the

var discDropdown = document.querySelector("a[class~='nav__button'][href='/discussions']");

with

 var discDropdown = document.querySelector("a[class~='nav__button'][href^='/discussions']");
    if (discDropdown === null) {
         discDropdown = document.querySelector("a[class~='nav__button'][href^='/discussions/subscribed']");
    }

Thanks to yderlig and ashenbones and Iainverse

4 years ago*
Permalink

Comment has been collapsed.

So it's just that? I've seen some post with change that to that, but didn't know which one should I do, without breaking it completely. Thanks! Now it works fine!

4 years ago
Permalink

Comment has been collapsed.

No luck, here. I'm not getting the dropdown and none of the games on the charts are highlighted. Any suggestions?

4 years ago
Permalink

Comment has been collapsed.

There was a small update right before your comment I think, the dropdown should have been fixed. Check if you have the lastest version.

4 years ago*
Permalink

Comment has been collapsed.

it's highlighting owned games for me but not wishlist games. i have my api key and steam id filled in, and i see it shows green for owned and teal for wishlist in the settings, but when i view a bundle post that includes both games i own and games on my wishlist, only the owned ones are highlighted. what should i look at?

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

thanks, that fixed it! didn’t think to read the tooltip for a setting i didn’t realize was related

4 years ago
Permalink

Comment has been collapsed.

I am signed in to both https://store.steampowered.com/ and https://steamcommunity.com via my browser and I still get that error.

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

tons of warnings, but the only error reads:

NotLoggedInError: "Not logged into the Steam store"
    NotLoggedInError moz-extension://0c0eeb5c-508f-4c17-b6c5-fff79b078035/userscripts/RaChart™ Enhancer.user.js?id=2987b309-14ad-4ec7-80c3-faa75bbd4273:2242
    storeMethodRequest moz-extension://0c0eeb5c-508f-4c17-b6c5-fff79b078035/userscripts/RaChart™ Enhancer.user.js?id=2987b309-14ad-4ec7-80c3-faa75bbd4273:734

from https://www.steamgifts.com/discussion/Jh1eX/fanatical-mega-pick-mix-27-dec-6-new-games-added, where it shows several games as being owned but no wishlisted or ignored

Also, "Check to enable experimental detection of bundles " won't stay checked.

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Just installed for the first time, but the options link isn't showing up in the Discussions drop-down. Am I doing something wrong? Using the latest versions of Firefox and Greasemonkey.

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

That seems to have done it. Thanks!

4 years ago
Permalink

Comment has been collapsed.

Bit of an odd one, the script works fine on all other bundle pages for me showing the games i own
Except this one
https://www.steamgifts.com/discussion/CSBJU/indiegala-match-iii-bundle
for some reason none of the games are showing as owned, when in fact i own most of them, if i click on the game name it takes me to steam which tells me the game is in my library so its not a different vrsion of the game
Anyone else seeing this?

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Its not a problem as such, i was more curious as to why that particular bundle wasn't working and mainly if it was just me effected as i have just replaced a hardrive and done a few cache cleans, and knowing me have broken something browserwise.

Thanks for taking the time to answer, its much appreciated ;)

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 4 years ago.

4 years ago
Permalink

Comment has been collapsed.

I am having an issue where owned games are correctly highlighted, but wishlisted ones are not. I couldn't find any obvious explanation or solution for this - can anyone help? Thanks!

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

That was it, thanks!
By the way, the relevant option looks wroing in my browser, is it just me? (screenshot removed)

4 years ago*
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

I should do that, thanks.

4 years ago
Permalink

Comment has been collapsed.

I don't know if i'm doing anything wrong but i'm getting this error.

Script error in [Greasemonkey script Sighery/RaChart™️ Enhancer; version 0.40.2]:
ReferenceError: GM_getValue is not defined

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

I must have missed that comment, you're a star <3

4 years ago
Permalink

Comment has been collapsed.

Hello
With very small modifications, I was able to make the script work on steamtrades.
It's useful only for the very small number of traders which actually do charts (like me), but I think this could become popular, now that the have list filter doesn't really work (and the ESGST replacement isn't really useful IMO).

The patch is there: https://pastebin.com/9dcwg2R4 you can try it (you have to reenter your steamid and steam API).

What do you think ? If you don't want to add it to your script, are you OK with me giving instructions on how to patch it ? (I can't submit a feature request on github as I use my real name on github and don't want it associated with my steam account)

4 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

4 years ago
Permalink

Comment has been collapsed.

Was there an update? Since today it doesn't work for wishlisted games anymore, for me at least.

3 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

3 years ago
Permalink

Comment has been collapsed.

Thank you!

3 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

3 years ago
Permalink

Comment has been collapsed.

Never mind, the check-mark was already set - but for some reason I was logged out of Steam in the browser. That was what was causing the issue... So the linked comment indeed was helping with that.

3 years ago
Permalink

Comment has been collapsed.

It has stopped working for me for a while now. Giving this error in the console:

VM583:61 Syntax error @ "RaChart™ Enhancer"!
##########################
JSHINT output:
##########################

SyntaxError: Unexpected token '<'
    at eval (<anonymous>)
    at <anonymous>:3:98
    at Object.c [as F_c] (<anonymous>:2:146)
    at Object.E_u (<anonymous>:3:267)
    at la (eval at exec_fn (:1:147), <anonymous>:60:53)
    at Object.create (eval at exec_fn (:1:147), <anonymous>:71:325)
    at d (eval at exec_fn (:1:147), <anonymous>:13:89)

It seems to be related to the sort table functionality.

If I remove this line, it does start working again

// @require     https://www.kryogenix.org/code/browser/sorttable/sorttable.js

It can be done via the dash board for Tampermonkey, and editing the RA Chart Enhancer (2nd last icon is edit action)
Remember to save (I'm using Ctrl+S)

3 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

3 years ago
Permalink

Comment has been collapsed.

Sadly this fix doesn't work anymore. (At least it didn't for me when I just gave it a try.)

3 years ago
Permalink

Comment has been collapsed.

Thank goodness for the fix, charts are so much easier to read with it!

3 years ago
Permalink

Comment has been collapsed.

Again, because you don't hear it enough, I really appreciate all you do, even if I don't say it often. Thank you! 😍 👍 💙

3 years ago
Permalink

Comment has been collapsed.

Ehh, what the... what happened here?

3 years ago
Permalink

Comment has been collapsed.

Wait is this the thread about the RaChart script for [something]monkey?

3 years ago
Permalink

Comment has been collapsed.

Yep, well "was" by the look of it...

3 years ago
Permalink

Comment has been collapsed.

Ouch. Just in case the author was hacked, I'd disable autoupdate on the script for now, even though there's nothing fishy on Github so far... 👀

3 years ago
Permalink

Comment has been collapsed.

Hmm! ye, might be a good idea.

3 years ago
Permalink

Comment has been collapsed.

Interesting. So RaisinCookiesAreGood bumps this, and within four hours Sighery deletes their SG account? I mean, no, I totally understand that sentiment, I feel the same way when someone tells me that raisin cookies are good, but.. hmm.

3 years ago
Permalink

Comment has been collapsed.

I blame RaisinCookiesAreGood too!

View attached image.
3 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

3 years ago
Permalink

Comment has been collapsed.

sobs I meant no harm. 😰 😭

I'm sorry, everyone, and especially you, Sighery. I had nothing but utmost respect for you. Deepest apologies and please forgive me.

3 years ago
Permalink

Comment has been collapsed.

i disabled auto updates and copy and pasted all external js code in case the links get hijacked

3 years ago
Permalink

Comment has been collapsed.

There's a two week hold on your SG account once you press the delete button, meaning he decided to delete it two weeks ago.

3 years ago
Permalink

Comment has been collapsed.

Welp, now I don't know who to blame, so....

View attached image.
3 years ago
Permalink

Comment has been collapsed.

what the hell happened here???

3 years ago
Permalink

Comment has been collapsed.

he deleted hes SG account

3 years ago
Permalink

Comment has been collapsed.

xdd but why?

3 years ago
Permalink

Comment has been collapsed.

If there is concern that Sighery got hacked and people are disabling autoupdates for RaChart Enhancer, please remember that there are also some other useful and often used scripts by Sighery you might want to also disable autoupdates on: "Find Those Bans" and "SGIgnore".

3 years ago
Permalink

Comment has been collapsed.

concern that Sighery got hacked

On what basis though? People delete their accounts all the time.

3 years ago
Permalink

Comment has been collapsed.

I don't know. You have to ask the people above my comment who are now disabling auto updates. I was just pointing out that there is more than one useful script by him :)

3 years ago
Permalink

Comment has been collapsed.

I think it was such a "title".
[Userscript] RaChart™ Enhancer [0.40.2] - Bugfixes - Steam Gifts
I'm not using this script.
I don't know much about features.
The author's Steam Gifts account seems to have been deleted.
It seems that the Github account remains.
It seems that the Steam account also remains.

RaChart/RaChart Enhancer at master · Sighery/RaChart · GitHub
ttps://github.com/Sighery/RaChart/tree/master/RaChart%20Enhancer

[Userscript] RaChart™ Enhancer [0.40.2] - Bugfixes
ttps://webcache.googleusercontent.com/search?q=cache:fe2Rv1VLFNEJ:https://www.steamgifts.com/discussion/riOvr/userscript-rachart-enhancer-0402-bugfixes+&cd=1

VirusTotal
https://www.virustotal.com/gui/url/075d1e9e41290dee0a0de6703b59a5888f2fd3a237f79bafb3d55134cd3e1217/detection
At the moment, there are no abnormalities.

Hmm?
Steam :: Steam Web API
https://steamcommunity.com/dev/apiterms
Did something go wrong with either Steam or the user?

Perhaps it is reasonable to say to the author, "Thank you for all your support for the community."
In any case, it is not recommended to use a script without the author.
It looks good to look for something similar.

User - Deleted-8000641 - Discussions
https://www.steamgifts.com/user/Deleted-8000641/discussions
I'm only looking at this article.
If there are other articles or add-ons, someone will look them up and write the information.
I don't look.┐(´Θ`)┌⏰no time.

3 years ago
Permalink

Comment has been collapsed.

It seems the SG Add-Ons Registry and http://api.sighery.com/documentation/steamgifts/igiveaways have been removed as well. :(

3 years ago
Permalink

Comment has been collapsed.

The Add-On registry is still there though, so there's that..

3 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 3 years ago.

3 years ago
Permalink

Comment has been collapsed.

Same!

3 years ago
Permalink

Comment has been collapsed.

Hey, uh... did it just randomly stop working? It was OK up to a few days earlier... now it doesn't work and I get no error...

2 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 2 years ago.

2 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 11 months ago.

2 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 2 years ago.

2 years ago
Permalink

Comment has been collapsed.

Still works for me, so it's not a general issue. Can't really help beyond this, sorry.

2 years ago
Permalink

Comment has been collapsed.

RaChart is ok, it was Tampermonkey that somehow stopped working, solved by reinstalling Tampermonkey in case anyone wonders :)

2 years ago
Permalink

Comment has been collapsed.

Is wishlisted games highlighting broken for everyone? Is there any alternative or workaround? Thanks!

1 year ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 1 month ago.

1 year ago
Permalink

Comment has been collapsed.

Or it was maybe gone 2 years ago, but we are realizing just now.

1 year ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 1 month ago.

1 year ago
Permalink

Comment has been collapsed.

Why is it weird? The person who bumped it has a good enough reason.

1 year ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 1 month ago.

1 year ago
Permalink

Comment has been collapsed.

I use ESGST but if that's all you need, it may be overkill. However, every single feature can be (dis|en)abled individually.

1 year ago
Permalink

Comment has been collapsed.

I'm already using ESG, but I'll consider it if I can't find a solution. Thanks

1 year ago
Permalink

Comment has been collapsed.

It still works for me, have you tried resynching your wishlist

1 year ago
Permalink

Comment has been collapsed.

Weird, but good to know. And yes, all synced and my wishlist game count is correct.

1 year ago
Permalink

Comment has been collapsed.

Cleared Local Storage, played around with the settings a bit, fixed. :)

1 year ago
Permalink

Comment has been collapsed.

Amazing I got this thing to work trough the comments. How about someone creates a new thread about this? This is by far the most useful add-on for this site.

1 month ago
Permalink

Comment has been collapsed.

Its a shame all his comments are gone aswell. Maybe Waybackmachine is of use here? Will give it a try later.

1 month ago
Permalink

Comment has been collapsed.

1 month ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.