View gist:293baec4ff71da0f10e1d212aed078a0
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
<title>([^<]*) | |
document.body.innerHTML = document.body.innerText |
View webharvy-takealot
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
// 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 |
View WebHarvy XML Miner Options
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
<MinerOptions> | |
<MinLevelsUp>2</MinLevelsUp> | |
<MinChildCount>10</MinChildCount> | |
<SelAccuracy>2</SelAccuracy> | |
</MinerOptions> |
View WebHarvy XML Version Info
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
<VersionInfo>6.3.0.189</VersionInfo> | |
<RegInfo>SysNucleus</RegInfo> |
View ta-expand.js
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
els = document.getElementsByTagName('span'); | |
for (var i = els.length - 1; i >= 0; i--) { | |
if(els[i].innerText === 'Read more') { | |
els[i].click(); | |
} | |
} |
View tripadvisor
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
// RegEx to Follow links | |
href="([^"]*) | |
// More button click | |
document.getElementsByClassName('moreBtn')[0].click(); | |
// Get images block |
View gist:436a2b0be80882f0ae61a391931abf5d
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
data-email="([^"]*) | |
tel:([^"]*) | |
title="([^\s]*)\s*\(opens in a new window\) | |
<p class="listing-address[^>]*>([^<]*) |
View gist:84a0574cbf908813787d2d95b8a6c2ed
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
groupEl = document.getElementsByTagName('article')[0].parentElement.parentElement.parentElement.parentElement; | |
groupEl.children[groupEl.childElementCount-1].scrollIntoView(); |
View ebay
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
id="email"[\s\S]*?cell_value">([^<]*) | |
id="phone_number"[\s\S]*?cell_value">([^<]*) |
View yellow pages egypt.js
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
[\s]*(.*) | |
tel: ([^"]*) | |
title="Website"[\s\S]*?href="([^"]*) | |
class="col-md-9 company_address"[^>]*>([^<]*) |
NewerOlder