Created
February 1, 2023 11:57
-
-
Save sysnucleus/2fa960de32937806e0098aff84ef4bbf to your computer and use it in GitHub Desktop.
WebHarvy OddsPortal Over Under
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code to expand O/U + 2.75 | |
var odds = document.getElementsByClassName('flex text-xs border-l cursor-pointer h-9 border-black-borders hover:bg-gray-light'); | |
for (var i = 0; i < odds.length; i++) { | |
var odd = odds[i]; | |
if(odd.innerText.startsWith('Over/Under +2.75')) { | |
odd.click(); | |
break; | |
} | |
} | |
// Over / Under values of 1xBet | |
1xBet[^\d]*.*\s*(.*) | |
1xBet[^\d]*.*\s*.*\s*(.*) | |
// Over / Under values of pinnacle | |
Pinnacle[^\d]*.*\s*(.*) | |
Pinnacle[^\d]*.*\s*.*\s*(.*) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment