Return to Project-GC

Welcome to Project-GC Q&A. Ask questions and get answers from other Project-GC users.

If you get a good answer, click the checkbox on the left to select it as the best answer.

Upvote answers or questions that have helped you.

If you don't get clear answers, edit your question to make it clearer.

+4 votes
303 views
The greasemonkey script (V. 1.4.11) does not remove the disclaimer. Tried to stop the script and start it again, but still the disclaimer is there. (Yes i reloaded the pages :-) )

All other settings work fine only this one does not apply on the site.

Using Chrome 54.0.2840.87 m on  Win 8.1 PC.
in Bug reports by NoobNader (Expert) (15.9k points)

1 Answer

+3 votes
 
Best answer

The HTML of the site has changed so it does not work. You can workaround it by modifying the script on your own:

Click on the Greasemonky arrow, "manage user scripts", choose the PGC one and click on Edit. Change the line 553 from

            $('#ctl00_divContentMain div.span-17 div.Note.Disclaimer').remove();

to   

            $('#divContentMain div.span-17 div.Note.Disclaimer').remove();

Edit: I submitted PR to Github.

by Jakuje (Moderator) (117k points)
selected by NoobNader (Expert)
Thx, it was easy to fix. Now it works again.
Best answer - fixed :-)
...