7

Dear over.gg, please hide completed games scores.

Comments:
Threaded Linear
#1
FlyingKiwi

Lots of sites do this, and it helps alot. This problem has spoiled lots of results for me. With the upcoming owl playing in the middle of the night for me, this will be a recurring problem and I'd love to see it improved.

#2
ManuxBaka
4
Frags
+

I agree , adding a profile option to 'hide score' would be awesome

Make it happen guys :)

#3
paolodicandio
1
Frags
+

yes, i need this in my life since i will never be able to watch a single OWL game live, i dont wanna be spoiled.

#4
remiska
-6
Frags
+

i think completed matches are low enough to not spoil anything if you dont want it

#6
FlyingKiwi
2
Frags
+

I think it does spoil the result when I literally have to press on the score to open a page with the score as big as the screen, all of this to watch the match I don't want spoiled. I made this thread for a reason.

#5
irishfire
1
Frags
+

Please Enigma, god of over.gg give us our wish

#7
Pixelfish
0
Frags
+

This

#8
Babouh
1
Frags
+

Totally agree, I've been spoiled so many times here, even when I'm being careful

#9
TheManMill
0
Frags
+

Yes, yes please. I started trying to put my thumb over the score when I clicked on the game to not spoil it. It never worked very well unfortunately.

#10
LordOfHorns
0
Frags
+

I have never had this problem; but because people do, this should be included. Although if you miss a game why do you want to watch the Vods when you could just watch highlights?
Can someone explain this to me

#14
Sideshow
1
Frags
+

If you don't see a movie at the cinema why would you watch it at home when you could watch the trailer?

#15
Wombat
0
Frags
+

This is completely unrelated but your message reminded me of this for some reason https://youtu.be/HmZm8vNHBSU

#11
KuroiRyuu9625
2
Frags
+

Completed scores could also just be hidden under a drop down and expanded if one chooses to.

#13
irishfire
0
Frags
+

i agree

#12
Guinea
0
Frags
+

Make it an option please :)

Personally I like to quickly look at scores rather than watching vods, so i would hate to have to un-hide each score

#21
bweesh
0
Frags
+

I second this

#22
Sayabi
1
Frags
+

Good idea I'll do it really quick and update my script

#16
Clickbait
6
Frags
+

If you wanna hide the score on the homepage, install Tampermonkey (if you're using chrome) and install this userscript:

// ==UserScript==
// @name         Stop Spoiling Me Daddy
// @namespace    https://www.over.gg/user/Clickbait
// @version      0.1
// @description  Hides scores on the over.gg homepage
// @author       Clickbait
// @match        https://www.over.gg/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('.h-match-team-score').hide();
})();
#17
Admirable
8
Frags
+

Don't do it, the $ dollar sign is a credit card hack

#18
KuroiRyuu9625
2
Frags
+

The greatest of greats has spoken.

#20
Clickbait
2
Frags
+

i missed u dadmirable

#23
Farsil
0
Frags
+

Close enough, it's jQuery

#19
Sayabi
3
Frags
+

Awesome job! Thanks a lot!

However, I was bored while waiting for Gladiators vs Spitfire, so I got to work and I enhanced it!

It's been a while I haven't touched JS, and god I forgot how much I hated JS. I've done this in such a dirty way, but I'm too lazy to do it correctly tbh.

It adds a spoiler button on the match pages and you have to click it to show the score and the maps results. Takes some time though so the score and results briefly appears, I can't fix this. All I can suggest is don't look at that area while the page loads.

Also, it won't show the "Show" button if there is the match isn't live/over (basically, if no score is displayed).

Here's the code:

// ==UserScript==
// @name         Stop Spoiling Me Daddy v0.2
// @namespace    https://www.over.gg/user/nei
// @version      0.2
// @description  Hides scores on the over.gg homepage and adds a button to show it on match pages
// @author       nei (based on Clickbait's one)
// @match        https://www.over.gg/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('.h-match-team-score').hide(); // Hides the score on homepage
    if($('.match-header-vs-score').length) // Checks if the score on the match page is displayed (i.e. if the match is ongoing/over). We won't hide it nor show the spoiler button if it isn't.
    {
        $('.match-header-vs-score').hide(); // Hides the score on match page
        $('.game-switch-map').hide(); // Hides the map name. If there is "N/A", you can guess the score in a way, so I removed it. Yes, I am THAT bored.
        $('.game-stats').hide(); // Hides the map results
        $('.match-header-vs-note').first().after('<input type="button" value="Show" id="spoiler-button" onclick="$(\'#spoiler-button\').hide(); $(\'.game-switch-map\').show(); $(\'.game-stats\').show();  $(\'.match-header-vs-score\').show();">'); // Adds the "Show button" on match page. And yes, the way I add it is ugly.
    }
})();

EDIT: added hiding map results as well

EDIT 2: god I'm such a nerd I added hiding the map names as well because seeing "N/A" makes the score easily guessable and also because I'm SO BORED

EDIT 3: I made a thread for it: https://www.over.gg/6770/temporary-spoiler-buttons

  • Preview
  • Edit
› check that that your post follows the forum rules and guidelines or get formatting help
Sign up or log in to post a comment