Created
January 20, 2016 12:13
-
-
Save ActuallyACat/bc5ef3669d9506a1a784 to your computer and use it in GitHub Desktop.
Blacklist recruiters from appearing in Seek
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
var blackList = [ | |
"2XM Technology Pty Ltd", | |
"Absolute IT", | |
"Acorva Technical Recruitment", | |
"Acumen Consulting", | |
"Adaps", | |
"Adecco Personnel", | |
"Adroit People", | |
"Agile People", | |
"Alchemy Consulting", | |
"Alexander James", | |
"Allerton Recruitment", | |
"Alpha Recruitment", | |
"Ambition Technology", | |
"Apex Resource Solutions", | |
"Aquent", | |
"Arc Recruitmen", | |
"Arney Recruitment", | |
"Ashdown People", | |
"Ashdown Consulting PTY Limited", | |
"Attribute Consulting", | |
"Aurec", | |
"Australasian Recruitment Company", | |
"Babcock", | |
"Balance Recruitment", | |
"Beyond Services", | |
"Blackcat Consulting", | |
"BlackOcean Recruitment", | |
"Bluestone Recruitment", | |
"Brand Developers", | |
"BSI People", | |
"Calibrate Recruitment", | |
"Callaways", | |
"Candle", | |
"Candle Australia", | |
"Capital Recruitment", | |
"Career Team Limited", | |
"Careers New Zealand", | |
"CircuIT Recruitment Group", | |
"CITI Recruitment", | |
"Comspek International", | |
"Consultus Recruitment & Research NZ Ltd", | |
"Continuum Recruitment", | |
"CP IT Solutions", | |
"Crackerjacks", | |
"Cubic Resource", | |
"Customise Consulting Group", | |
"Data#3 Limited", | |
"De Winter", | |
"Dimension Data", | |
"Drake International", | |
"Dynamo Recruitment", | |
"ecareer employment services", | |
"EDT Global Pty Ltd", | |
"Enterprise Recruitment", | |
"Ethos Corporation", | |
"Evoke Consulting", | |
"Evolution Group", | |
"Farrow Jamieso", | |
"Finite IT Recruitment Solutions", | |
"Flintfox International", | |
"Fluid Recruitment", | |
"Focus Recruitment", | |
"Frog Recruitmen", | |
"Fuse IT Recruitment", | |
"Fusion Transactive", | |
"Gemteq Executive", | |
"Genesis IT&T P/L", | |
"Global Attract", | |
"Global Career Link", | |
"Green Light Australia Pty Ltd", | |
"Greythorn", | |
"HCM Australia", | |
"H2R Consulting", | |
"Hart Recruitment", | |
"Harvey Nash", | |
"Hays", | |
"Hays Information Technology", | |
"High Street Recruitment", | |
"HiTech Personnel", | |
"Horizon Consulting", | |
"Hudson", | |
"Human Recruitment", | |
"Huntel Global", | |
"Hydrogen Group Pty", | |
"IBIT Solutions", | |
"iKas International Australia", | |
"Infotech Consulting", | |
"INSIDE EXECUTIVE RECRUITMENT", | |
"Inspire Recruitment Group Pty Limited", | |
"Interpro – NSW", | |
"IT Consulting Associates Ltd", | |
"IT Job Search Ltd", | |
"IT Matters Recruitment – - Voted best", | |
"IT Recruitment", | |
"Kelly Executive", | |
"Kinetic Recruitment", | |
"Lawson Williams Consulting Group", | |
"Live Executive", | |
"Lloyd Executive", | |
"Lucky You Found Me", | |
"M&T Resources", | |
"Macquarie Group Limited", | |
"Madison Recruitment", | |
"Manpower Professional Auckland", | |
"Match 2 Technical Ltd", | |
"MCS Consulting", | |
"Metro Recruitment Ltd", | |
"Mindworx", | |
"Mitchellake Consulting", | |
"Morgan Campbell", | |
"Mosaic Recruitment", | |
"MTR", | |
"NAKAMA Sydney", | |
"Naked Recruitment", | |
"National Recruitment", | |
"Naviro", | |
"Needus", | |
"ninetwenty", | |
"Northbridge IT Recruitment", | |
"OutSource", | |
"Parker Bridge", | |
"PBI Search", | |
"People Group", | |
"People Solutions", | |
"Peoplebank", | |
"Pinnacle IT", | |
"Place Recruitment", | |
"PM-Partners Group", | |
"Portfolio Recruitment", | |
"Potentia", | |
"PowerHouse People", | |
"PRA", | |
"Preacta Recruitment", | |
"Precision Sourcing", | |
"Pro-Perspective", | |
"Professional Client Recruitment Solutions", | |
"Progressive", | |
"Progressive People", | |
"Protocol Personnel Services", | |
"pursuIT", | |
"QJumpers", | |
"Radius Recruitment", | |
"Radius Solutions Group", | |
"Radley Group", | |
"Randstad", | |
"RANN IT", | |
"razzbri", | |
"RDBMS Resource Solutions", | |
"Ready Willing and Able", | |
"Recruit IT", | |
"Red Rock Consulting", | |
"Respect-Search and Selection", | |
"Robert Half Technology", | |
"Robert Walters", | |
"Rookie Recruits", | |
"Round Peg", | |
"Rubix Solutions Pty Ltd", | |
"salt", | |
"Sead", | |
"SearchWorks Ltd", | |
"SGS Consulting", | |
"Silk Recruitment", | |
"Sinclair Recruitment", | |
"Sirius Technology Sydney part of Sirius People Pty Ltd", | |
"SIRIUS TECHNOLOGY part of the Sirius Recruitment Group", | |
"Skillquest", | |
"Skillsearch Contracting Pty Ltd", | |
"Spark IT", | |
"Staff Solutions Australia Pty. Ltd", | |
"Stellar Consulting Group Limited", | |
"Sway Recruitment", | |
"Talent2", | |
"Talent International", | |
"Talent Magnet", | |
"Talent Propeller", | |
"Talent Vault", | |
"TalentPoint", | |
"Talon Group", | |
"The Recruitment Company", | |
"TheDriveGroup", | |
"TRA Global", | |
"TRC Group", | |
"TRS – Advertising & Media", | |
"TRS – IT & Communications", | |
"Ultimate Recruitment Corporation", | |
"Vantage Recruitment", | |
"Velocity Recruitment", | |
"Verve Recruitment", | |
"Xpand Group Pty Ltd" | |
]; | |
var advertisers = document.getElementsByClassName('advertiser-name'); | |
for (var i=0; i < advertisers.length; i++) { | |
var name = advertisers[i].innerHTML | |
if (blackList.indexOf(name) > -1) { | |
var el = advertisers[i].closest("article"); | |
el.style.display = 'none'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment