This file contains hidden or 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
| Corresponding Author Name | |
| -------------------------- | |
| scholar\?q=([^"]*)[^>]*>[^>]*>[^>]*>[^>]*>[^>]*>[\d\s\,]*\* | |
| ------ | |
| \*<\/sup>[^>]*>[^>]*><a class="[^"]*" data-author-id="\d+" href="mailto:([^"]*) |
This file contains hidden or 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
| // ------------------------------------------------------ | |
| // For WebHarvy - https://www.webharvy.com | |
| // ------------------------------------------------------ | |
| // JavaScript Code to Open 'Pinnacle' Opening Odds. | |
| // You may change the book maker name to one of your choice. | |
| // ------------------------------------------------------ | |
| elements = document.querySelectorAll('.eoc-table__row__bookmaker'); | |
| pinnacleElements = Array.from(elements).filter(element => | |
| element.innerHTML.includes('alt="Pinnacle"') |
This file contains hidden or 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
| // JavaScript for revealing coupon code | |
| links = document.querySelectorAll('a[href]'); | |
| for (let i = 0; i < links.length; i++) { | |
| link = links[i]; | |
| href = decodeURIComponent(link.href); | |
| match = href.match(/(?:cc|promo)\/(\d+)/); | |
| if (match) { | |
| code = match[1]; | |
| link.href = `https://couponfollow.com/site/macys.com#C${code}`; |
This file contains hidden or 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
| BetExplorer Codes | |
| //--------------------------------------------------------------------------- | |
| // Mouse Over for 1xBet Home Opening Odds | |
| // hda = 4 means home opening | |
| // Change hda = 5 for Draw and hda = 6 for Away opening odds | |
| // Change bookmaker as per requirement | |
| //--------------------------------------------------------------------------- | |
| index = 4; |
This file contains hidden or 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
| <title>([^<]*) | |
| document.body.innerHTML = document.body.innerText |
This file contains hidden or 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
| // JavaScript Code | |
| els = document.getElementsByClassName('image-box undefined'); | |
| for (var i = els.length - 1; i >= 0; i--) { | |
| img = els[i].children[0]; | |
| img.setAttribute('src', img.getAttribute('src').replace('list', 'pdpxl')); | |
| } | |
| // RegEx |
This file contains hidden or 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
| <MinerOptions> | |
| <MinLevelsUp>2</MinLevelsUp> | |
| <MinChildCount>10</MinChildCount> | |
| <SelAccuracy>2</SelAccuracy> | |
| </MinerOptions> |
This file contains hidden or 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
| <VersionInfo>6.3.0.189</VersionInfo> | |
| <RegInfo>SysNucleus</RegInfo> |
This file contains hidden or 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
| els = document.getElementsByTagName('span'); | |
| for (var i = els.length - 1; i >= 0; i--) { | |
| if(els[i].innerText === 'Read more') { | |
| els[i].click(); | |
| } | |
| } |
This file contains hidden or 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
| // RegEx to Follow links | |
| href="([^"]*) | |
| // More button click | |
| document.getElementsByClassName('moreBtn')[0].click(); | |
| // Get images block |
NewerOlder