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 for Author Name | |
| name="citation_author" content="([^"]*)"><meta data-vue-meta="1" name="citation_author_email" | |
| // RegEx for Email | |
| name="citation_author" content="[^"]*"><meta data-vue-meta="1" name="citation_author_email" content="([^"]*) |
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
| (function () { | |
| extracting = false; | |
| FIXED = 'data-link-fixed'; | |
| document.addEventListener('click', function (e) { | |
| if (extracting) return; | |
| if (e.target.closest(`a[${FIXED}]`)) { | |
| e.stopPropagation(); | |
| return; |
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
| // Select Match ID | |
| data-event-id="([^"]*) | |
| // Retain only highlighted rows | |
| Standings - Overall | |
| -------------------- |
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
| Yellow card[\s\S]*?<span[^>]*>([^<]*) | |
| Red card[\s\S]*?<span[^>]*>([^<]*) | |
| Substitution[\s\S]*?<span[^>]*>([^<]*) | |
| >Goal[\s\S]*?<span[\s\S]*?<span[^>]*>([^<]*) | |
| >Own goal[\s\S]*?<span[\s\S]*?<span[^>]*>([^<]*) |
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 |
NewerOlder