Created
January 18, 2025 16:34
-
-
Save Xunnamius/7b8d4df39282c66f9d89a61944419dca to your computer and use it in GitHub Desktop.
Block fake news from appearing on currentstatus.io (a tampermonkey script)
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
| // ==UserScript== | |
| // @name Fake News Blocker | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-04-04 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://currentstatus.io/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=currentstatus.io | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const trash = [ | |
| ...getTrash(), | |
| 'thefp.com', | |
| 'hughhewitt.com', | |
| 'nolabels.org', | |
| 'dailymail.co.uk', | |
| 'timesnownews.com', | |
| 'nytimes.com' | |
| ]; | |
| const heroArticle = document.querySelector('.jumbotron'); | |
| const bigArticles = document.querySelectorAll('body div.container div.list-group-item'); | |
| const littleArticles = document.querySelectorAll('body div.container li.list-group-item'); | |
| let countBig = 0; | |
| let countLittle = 0; | |
| const heroHost = heroArticle.querySelector('.card-link')?.textContent.trim(); | |
| if(trash.some((host) => host.startsWith(heroHost))) { | |
| console.info(`blocked "hero" fake news article from ${heroHost}`); | |
| heroArticle.innerHTML = '<center>Fake News Blocked</center>'; | |
| } | |
| for(const article of bigArticles) { | |
| const articleHost = article.querySelector('div.align-bottom .card-link')?.textContent.trim(); | |
| if(trash.some((host) => host.startsWith(articleHost))) { | |
| countBig++; | |
| console.info(`blocked "big" fake news article from ${articleHost}`); | |
| article.textContent = 'Fake News Blocked'; | |
| } | |
| } | |
| for(const article of littleArticles) { | |
| const articleHost = article.querySelector('div.card-link')?.innerText.split('/').at(-1).trim(); | |
| if(trash.some((host) => host.startsWith(articleHost))) { | |
| countLittle++; | |
| console.info(`blocked "little" fake news article from ${articleHost}`); | |
| article.textContent = 'Fake News Blocked'; | |
| } | |
| } | |
| console.log(`saw ${bigArticles.length} "big" articles, blocked ${countBig}`); | |
| console.log(`saw ${littleArticles.length} "little" articles, blocked ${countLittle}`); | |
| function getTrash() { | |
| // Taken from ublocklist custom block list | |
| return [ | |
| 'thefederalist.com', | |
| 'thefp.com', | |
| 'x.com', | |
| 'twitter.com', | |
| 'townhall.com', | |
| 'foxnews.com', | |
| '7news.com.au', | |
| '9news.com.au', | |
| '19fortyfive.com', | |
| 'abc.es', | |
| 'theadvocates.org', | |
| 'english.ahram.org.eg', | |
| 'airdrieecho.com', | |
| 'al.com', | |
| 'altoday.com', | |
| 'shelbycountyreporter.com', | |
| 'albertleatribune.com', | |
| 'abqjournal.com', | |
| 'alexcityoutlook.com', | |
| 'echopress.com', | |
| 'americanactionforum.org', | |
| 'americanaffairsjournal.org', | |
| 'acsh.org', | |
| 'americanfirearms.org', | |
| 'aier.org', | |
| 'americanmilitarynews.com', | |
| 'americasquarterly.org', | |
| 'americustimesrecorder.com', | |
| 'anchoragepress.com', | |
| 'andalusiastarnews.com', | |
| 'saltwire.com', | |
| 'antiwar.com', | |
| 'hk.appledaily.com', | |
| 'arcamax.com', | |
| 'hpenews.com', | |
| 'arkansasonline.com', | |
| 'israelnationalnews.com', | |
| 'aninews.in', | |
| 'atlanticcouncil.org', | |
| 'atmoreadvance.com', | |
| 'newideal.aynrand.org', | |
| 'thepostsearchlight.com', | |
| 'bangkokpost.com', | |
| 'baptiststandard.com', | |
| 'guardonline.com', | |
| 'panolian.com', | |
| 'tj.news', | |
| 'beavercreeknewscurrent.com', | |
| 'beinglibertarian.com', | |
| 'communitypress.ca', | |
| 'bellinghammetronews.com', | |
| 'bemidjipioneer.com', | |
| 'berlingske.dk', | |
| 'bild.de', | |
| 'billingsgazette.com', | |
| 'Billofrightsinstitute.org', | |
| 'bipartisanpolicy.org', | |
| 'biznews.com', | |
| 'bnr.nl', | |
| 'bogalusadailynews.com', | |
| 'boomlive.in', | |
| 'bostonherald.com', | |
| 'bgdailynews.com', | |
| 'thecragandcanyon.ca', | |
| 'brainerddispatch.com', | |
| 'breakingdefense.com', | |
| 'thebreakthrough.org', | |
| 'brewtonstandard.com', | |
| 'bryantimes.com', | |
| 'bt.dk', | |
| 'tj.news', | |
| 'businesslive.co.za', | |
| 'business-standard.com', | |
| 'calgaryherald.com', | |
| 'californiaglobe.com', | |
| 'capoliticalreview.com', | |
| 'tj.news', | |
| 'campaignforliberty.org', | |
| 'cjnews.com', | |
| 'taxpayer.com', | |
| 'saltwire.com', | |
| 'capitalismmagazine.com', | |
| 'leaderpub.com', | |
| 'cato.org', | |
| 'ccn.com', | |
| 'cepa.org', | |
| 'cftni.org', | |
| 'saltwire.com', | |
| 'chathamthisweek.com', | |
| 'checkyourfact.com', | |
| 'chicagotribune.com', | |
| 'chinadigitaltimes.net', | |
| 'christianitytoday.com', | |
| 'claiborneprogress.net', | |
| 'clantonadvertiser.com', | |
| 'clarin.com', | |
| 'clevelandbanner.com', | |
| 'clintonnewsrecord.com', | |
| 'cochranetimes.com', | |
| 'cochranetimespost.ca', | |
| 'saltwire.com', | |
| 'coldlakesun.com', | |
| 'gazette.com', | |
| 'columbiadailyherald.com', | |
| 'crfb.org', | |
| 'newsexaminer.com', | |
| 'cordeledispatch.com', | |
| 'counterextremism.com', | |
| 'criticalthreats.org', | |
| 'alexcityoutlook.com', | |
| 'dn.se', | |
| 'dailycorinthian.com', | |
| 'dailyherald.com', | |
| 'mininggazette.com', | |
| 'dailypress.com', | |
| 'dailyo.in', | |
| 'dallasnews.com', | |
| 'amnews.com', | |
| 'dcjournal.com', | |
| 'volkskrant.nl', | |
| 'deccanchronicle.com', | |
| 'delgazette.com', | |
| 'delfi.lt', | |
| 'demopolistimes.com', | |
| 'denvergazette.com', | |
| 'deseretnews.com', | |
| 'desertsun.com', | |
| 'dl-online.com', | |
| 'detroitnews.com', | |
| 'devondispatch.ca', | |
| 'diepresse.com', | |
| 'welt.de', | |
| 'douglascountysentinel.com', | |
| 'leaderpub.com', | |
| 'downsizinggovernment.org', | |
| 'draytonvalleywesternreview.com', | |
| 'drudgereport.com', | |
| 'delawarevalleyjournal.com', | |
| 'registerherald.com', | |
| 'thewetumpkaherald.com', | |
| 'ecuavisa.com', | |
| 'heraldledger.com', | |
| 'edmontonexaminer.com', | |
| 'edmontonjournal.com', | |
| 'edmontonsun.com', | |
| 'educationnext.org', | |
| 'leaderpub.com', | |
| 'elfinanciero.com.mx', | |
| 'thenewsenterprise.co', | |
| 'elmundo.es', | |
| 'eluniverso.com', | |
| 'endtimeheadlines.org', | |
| 'entrepreneur.com', | |
| 'ekirikas.com', | |
| 'lakeshoreadvance.com', | |
| 'expressen.se', | |
| 'fairborndailyherald.com', | |
| 'fairviewpost.com', | |
| 'faithfamilyamerica.com', | |
| 'daily-times.com', | |
| 'longwarjournal.org', | |
| 'financialexpress.com', | |
| 'financialpost.com', | |
| 'firstpost.com', | |
| 'fitchratings.com', | |
| 'fitsnews.com', | |
| 'forbes.com', | |
| 'fpri.org', | |
| 'thedigitalcourier.com', | |
| 'fortmcmurraytoday.com', | |
| 'fortsaskatchewanrecord.com', | |
| 'star-telegram.com', | |
| 'fortnightlyreview.co.uk', | |
| 'fortune.com', | |
| 'fee.org', | |
| 'foxbusiness.com', | |
| 'state-journal.com', | |
| 'ftimes.com', | |
| 'FAZ.net', | |
| 'dailyjournal.net', | |
| 'franklinnews.org', | |
| 'fraserinstitute.org', | |
| 'tj.news', | |
| 'freedomalliance.org', | |
| 'freedomhouse.org', | |
| 'fcnews.org', | |
| 'mydailytribune.com', | |
| 'galvnews.com', | |
| 'gananoquereporter.com', | |
| 'geo.tv', | |
| 'goderichsignalstar.com', | |
| 'godupdates.com', | |
| 'newsargus.com', | |
| 'gp.se', | |
| 'grandforksherald.com', | |
| 'grandhaventribune.com', | |
| 'mlive.com', | |
| 'messenger-inquirer.com', | |
| 'greenfieldreporter.com', | |
| 'greenvilleadvocate.com', | |
| 'dailyadvocate.com', | |
| 'greybrucethisweek.ca', | |
| 'griffindailynews.com', | |
| 'guns.com', | |
| 'saltwire.com', | |
| 'hammondstar.com', | |
| 'hannaherald.com', | |
| 'times-georgian.com', | |
| 'harlanenterprise.net', | |
| 'thesuntimes.com', | |
| 'myheraldreview.com', | |
| 'heraldsun.com.au', | |
| 'hln.be', | |
| 'hidesertstar.com', | |
| 'hpenews.com', | |
| 'highrivertimes.com', | |
| 'timesgazette.com', | |
| 'thehindubusinessline.com', | |
| 'honestreporting.com', | |
| 'hoover.org', | |
| 'humanprogress.org', | |
| 'h-ponline.com', | |
| 'al.com', | |
| 'icitizen.com', | |
| 'idahostatejournal.com', | |
| 'ilgiornale.it', | |
| 'inhomelandsecurity.co', | |
| 'indiatimes.com', | |
| 'indiatoday.in', | |
| 'indiatvnews.com', | |
| 'inforum.com', | |
| 'insidesources.com', | |
| 'theihs.org', | |
| 'interfax.ru', | |
| 'undertandingwar.org', | |
| 'investortimes.com', | |
| 'independent.ie', | |
| 'itv.com', | |
| 'jamestownsun.com', | |
| 'jpost.com', | |
| 'jessaminejournal.com', | |
| 'jewishbreakingnews.com', | |
| 'jewishjournal.com', | |
| 'jns.org', | |
| 'jewishunpacked.com', | |
| 'jonesborosun.com', | |
| 'saltwire.com', | |
| 'justfacts.com', | |
| 'justfactsdaily.com', | |
| 'foxkansas.com', | |
| 'foxsanantonio.com', | |
| 'wwmt.com', | |
| 'khaleejtimes.com', | |
| 'katu.com', | |
| 'katv.com', | |
| 'bakersfieldnow.com', | |
| 'bakersfieldnow.com', | |
| 'kbsi23.com', | |
| 'fox4beaumont.com', | |
| 'siouxlandnews.com', | |
| 'kcby.com', | |
| 'abcstlouis.com', | |
| 'kdsm17.com', | |
| 'nbcmontana.com', | |
| 'kentuckynewera.com', | |
| 'keprtv.com', | |
| 'kfdm.com', | |
| 'kfoxtv.com', | |
| 'cbs2iowa.com', | |
| 'foxnebraska.com', | |
| 'cbs2iowa.com', | |
| 'khqa.com', | |
| 'kimatv.com', | |
| 'tj.news', | |
| 'klewtv.com', | |
| 'siouxlandnews.com', | |
| 'kmph.com', | |
| 'nbc16.com', | |
| 'knewz.com', | |
| 'okcfox.com', | |
| 'komonews.com', | |
| 'koreaherald.com', | |
| 'siouxlandnews.com', | |
| 'fox42kptm', | |
| 'siouxlandnews.com', | |
| 'krcgtv.com', | |
| 'mynews4.com', | |
| 'foxreno.com', | |
| 'foxkansas.com', | |
| 'fox38corpuschristi.com', | |
| 'news3lv.com', | |
| 'ktul.com', | |
| 'ktvl.com', | |
| 'kutv.com', | |
| 'abc7amarillo.com', | |
| 'abc7amarillo.com', | |
| 'nebraska.tv', | |
| 'lagrangenews.com', | |
| 'americanpress.com', | |
| 'nacion.com', | |
| 'lanacion.com.ar', | |
| 'valleytimes-news.com', | |
| 'lobservateur.com', | |
| 'lpheralddispatch.com', | |
| 'lmtonline.com', | |
| 'reviewjournal.com', | |
| 'learnliberty.org', | |
| 'lebanondemocrat.com', | |
| 'leducrep.com', | |
| 'lefigaro.fr', | |
| 'leicestermercury.co.uk', | |
| 'newstopicnews.com', | |
| 'leparisien.fr', | |
| 'lexingtoninstitute.org', | |
| 'libertarianism.org', | |
| 'mycouriertribune.com', | |
| 'listverse.com', | |
| 'thecabin.net', | |
| 'lbc.co.uk', | |
| 'standard.co.uk', | |
| 'lfpress.com', | |
| 'dailynews.com', | |
| 'lowndessignal.com', | |
| 'luvernejournal.com', | |
| 'mackinac.org', | |
| 'the-messenger.com', | |
| 'malaymail.com', | |
| 'unionleader.com', | |
| 'manilatimes.net', | |
| 'marginalrevolution.com', | |
| 'chronicle-tribune.com', | |
| 'marketwatch.com', | |
| 'tribunecourier.com', | |
| 'frontiersman.com', | |
| 'mayerthorpefreelancer.com', | |
| 'mayfield-messenger.com', | |
| 'mercatus.org', | |
| 'metabunk.org', | |
| 'metropolisplanet.com', | |
| 'middlesboronews.com', | |
| 'tj.news', | |
| 'mitchellrepublic.com', | |
| 'al.com', | |
| 'tj.news', | |
| 'enquirerjournal.com', | |
| 'montrealgazette.com', | |
| 'moroccoworldnews.com', | |
| 'm24.ru', | |
| 'mtdemocrat.com', | |
| 'hometownregister.com', | |
| 'mynorthwest.com', | |
| 'nantonnews.com', | |
| 'nationalaffairs.com', | |
| 'nationalinterest.org', | |
| 'nationalpost.com', | |
| 'nos.nl', | |
| 'newbernsj.com', | |
| 'thecouriertimes.com', | |
| 'observer.com', | |
| 'nypost.com', | |
| '.news.com.au', | |
| 'news-gazette.com', | |
| 'newsroom.co.nz', | |
| 'newstalkzb.co.nz', | |
| 'newsweek.com', | |
| 'nhjournal.com', | |
| 'nhk.or.jp', | |
| 'leaderpub.com', | |
| 'nwaonline.com', | |
| 'northwestsignal.net', | |
| 'noticias.r7.com', | |
| 'nowentertainment.net', | |
| 'nyteknik.se', | |
| 'oilprice.co', | |
| 'opendoorsusa.org', | |
| 'opposingviews.com', | |
| 'ocregister.com', | |
| 'ottawacitizen.com', | |
| 'ottawasun.com', | |
| 'messenger-inquirer.com', | |
| 'pacificresearch.org', | |
| 'paducahsun.com', | |
| 'paragoulddailypress.com', | |
| 'newsandsentinel.com', | |
| 'parkrapidsenterprise', | |
| 'peacecountrysun.com', | |
| 'prrecordgazette.com', | |
| 'shelbycountyreporter.com', | |
| 'peninsuladailynews.com', | |
| 'perutribune.com', | |
| 'pinchercreekecho.com', | |
| 'post-gazette.com', | |
| 'triblive.com', | |
| 'mydailyregister.com', | |
| 'policyed.org', | |
| 'mydailysentinel.com', | |
| 'portsmouth-dailytimes.com', | |
| 'prime9ja.com.ng', | |
| 'princegeorgepost.com', | |
| 'pdclarion.com', | |
| 'the-messenger.com', | |
| 'punjabitribuneonline.com', | |
| 'rstreet.org', | |
| 'rasmussenreports.com', | |
| 'realcleardefense.com', | |
| 'realclearinvestigations.com', | |
| 'realclearmarkets.com', | |
| 'realclearpolicy.com', | |
| 'realclearpolitics.com', | |
| 'realclearreligion.org', | |
| 'reason.com', | |
| 'valleynewslive.com', | |
| 'reforma.com', | |
| 'leaderpost.com', | |
| 'remingtonresearchgroup.com', | |
| 'republicworld.com', | |
| 'rrdailyherald.com', | |
| 'rochsent.com', | |
| 'rtlnieuws.nl', | |
| 'couriernews.com', | |
| 'franklinfavorite.com', | |
| 'tj.news', | |
| 'tj.news', | |
| 'srnnews.com', | |
| 'sbsun.com', | |
| 'sanfordherald.com', | |
| 'thestarphoenix.com', | |
| 'savannahnow.com', | |
| 'scoperatings.com', | |
| 'thedailycitizen.com', | |
| 'seekingalpha.com', | |
| 'selmatimesjournal.com', | |
| 'themountainpress.com', | |
| 'shelbycountyreporter.com', | |
| 'shelbynews.com', | |
| 'sherwoodparknews.com', | |
| 'sofrep.com', | |
| 'sol.sapo.pt', | |
| 'heraldpalladium.com', | |
| 'southwestdailynews.com', | |
| 'sprucegroveexaminer.com', | |
| 'saltwire.com', | |
| 'heraldpalladium.com', | |
| 'twincities.com', | |
| 'theinteriorjournal.com', | |
| 'stonyplainreporter.com', | |
| 'tabletmag.com', | |
| 'times-georgian.com', | |
| 'tallasseetribune.com', | |
| 'taxfoundation.org', | |
| 'tharawat-magazine.com', | |
| 'algemeiner.com', | |
| 'theamericanconservative.com', | |
| 'theaustralian.com.au', | |
| 'al.com', | |
| 'thebrunswicknews.com', | |
| 'thebulwark.com', | |
| 'chattanoogan.com', | |
| 'english.chosun.com', | |
| 'thechronicleherald.ca', | |
| 'couriermail.com.au', | |
| 'thedickinsonpress.com', | |
| 'thedispatch.com', | |
| 'durangoherald.com', | |
| 'thefiscaltimes.com', | |
| 'thegazette.com', | |
| 'theglobeandmail.com', | |
| 'thegraphicleader.com', | |
| 'independent.org', | |
| 'the-japan-news.com', | |
| 'jewishpress.com', | |
| 'journal-news.net', | |
| 'thelibertarianrepublic.com', | |
| 'themessenger.com', | |
| 'nation.com.pk', | |
| 'thenewatlantis.com', | |
| 'thenews.com.pk', | |
| 'saltwire.com', | |
| 'theobjectivestandard.co', | |
| 'oklahoman.com', | |
| 'pantagraph.com', | |
| 'post-journal.com', | |
| 'pe.com', | |
| 'tribtown.com', | |
| 'spectator.co.uk', | |
| 'spectator.us', | |
| 'spectatorworld.com', | |
| 'spokesman.com', | |
| 'standardmedia.co.ke', | |
| 'straitstimes.com', | |
| 'thestreet.com', | |
| 'theitem.com', | |
| 'thetimesherald.com', | |
| 'timesofindia.indiatimes.com', | |
| 'thetimes.co.uk', | |
| 'tribuneindia.com', | |
| 'washingtoninstitute.org', | |
| 'thewest.com.au', | |
| 'yomiuri.co.jp', | |
| 'hpenews.com', | |
| 'times-georgian.com', | |
| 'tnonline.com', | |
| 'timeslive.co.za', | |
| 'thenationaldesk.com', | |
| 'toledoblade.com', | |
| 'tovima.gr', | |
| 'transparentcalifornia.com', | |
| 'saltwire.com', | |
| 'troymessenger.com', | |
| 'saltwire.com', | |
| 'tylerpaper.com', | |
| 'unherd.com', | |
| 'saltwire.com', | |
| 'valuewalk.com', | |
| 'thecabin.netvanburen', | |
| 'theprovince.com', | |
| 'vancouversun.com', | |
| 'vaticannews.va', | |
| 'vermilionstandard.com', | |
| 'times-georgian.com', | |
| 'suncommercial.com', | |
| 'vulcanadvocate.com', | |
| 'wabashplaindealer.com', | |
| 'wach.com', | |
| 'wsj.com', | |
| 'warricknews.com', | |
| 'recordherald.com', | |
| 'rep-am.com', | |
| 'foxbaltimore.com', | |
| 'abc3340.com', | |
| 'wchstv.com', | |
| 'abcnews4.com', | |
| 'wcti12.com', | |
| 'wcyb.com', | |
| 'foxlexington.com', | |
| 'weartv.com', | |
| 'wctrib.com', | |
| 'wetaskiwintimes.com', | |
| 'thewetumpkaherald.com', | |
| 'nbc25news.com', | |
| 'wfxl.com', | |
| 'wgme.com', | |
| 'upnorthlive.com', | |
| 'upnorthlive.com', | |
| 'wgxa.tv', | |
| '13wham.com', | |
| 'whitecourtstar.com', | |
| 'local21news.com', | |
| 'newschannel20.com', | |
| 'journalpatriot.com', | |
| 'myheraldreview.com', | |
| 'sungazette.com', | |
| 'news-herald.com', | |
| 'wnewsj.com', | |
| 'winchestersun.com', | |
| 'windsorstar.com', | |
| 'winnipegsun.com', | |
| 'wjactv.com', | |
| 'turnto10.com', | |
| 'wjbc.com', | |
| 'wjla.com', | |
| 'wjr.com', | |
| 'dayton247now.com', | |
| 'local12.com', | |
| 'wlos.com', | |
| 'fox11online.com', | |
| 'mycbs4.com', | |
| 'nbc24.com', | |
| 'news4sanantonio.com', | |
| 'fox56.com', | |
| 'dglobe.com', | |
| 'wpde.com', | |
| 'cbs12.com', | |
| 'fox23maine.com', | |
| 'wpgh53.com', | |
| 'mynbc15.com', | |
| 'cbs6albany.com', | |
| 'dayton247now.com', | |
| 'foxrichmond.com', | |
| 'wsbt.com', | |
| 'wset.com', | |
| 'nbc25news.com', | |
| 'cnycentral.com', | |
| 'abc6onyourside.com', | |
| 'fox28media.com', | |
| 'upnorthlive.com', | |
| 'wtov9.com', | |
| 'myfox28columbus.com', | |
| 'newschannel9.com', | |
| 'foxchattanooga.com', | |
| 'cnycentral.com', | |
| 'wtwc40.com', | |
| 'foxrochester.com', | |
| 'wutv29.com', | |
| 'wvah.com', | |
| 'abc45.com', | |
| 'fox17.com', | |
| 'xeniagazette.com', | |
| 'yankeeinstitute.org', | |
| 'en.yna.co.kr', | |
| 'zebrafactcheck.com', | |
| 'academia.org', | |
| 'aim.org', | |
| 'acton.org', | |
| 'albertapressleader.ca', | |
| 'altnewsmedia.net', | |
| 'amac.us', | |
| 'americainsider.org', | |
| 'americarisingpac.org', | |
| 'aclj.org', | |
| 'americanconsequences.com', | |
| 'conservative.org', | |
| 'aei.org', | |
| 'americansforprosperity.org', | |
| 'atr.org', | |
| 'afpc.org', | |
| 'amgreatness.com', | |
| 'americanjournaldaily.com', | |
| 'alec.org', | |
| 'spectator.org', | |
| 'americanwirenews.com', | |
| 'amimagazine.org', | |
| 'ammoland.com', | |
| 'aa.com.tr', | |
| '1290wlby.com', | |
| 'arizonadailyindependent.com', | |
| 'armstrongeconomics.com', | |
| 'asian-dawn.com', | |
| 'aina.org', | |
| 'bearingarms.com', | |
| 'beliefnet.com', | |
| 'talk995.com', | |
| 'bizpacreview.com', | |
| 'blabber.buzz', | |
| 'blackcommunitynews.com', | |
| 'bluelivesmatter.blue', | |
| 'boundingintocomics.com', | |
| 'brownstone.org', | |
| 'c2cjournal.ca', | |
| 'calgarysun.com', | |
| 'camera.org', | |
| 'campaignlifecoalition.com', | |
| 'campusreform.org', | |
| 'capitalresearch.org', | |
| 'catholicworldreport.com', | |
| 'americanexperiment.org', | |
| 'chicksontheright.com', | |
| 'http:cc.org', | |
| 'christianheadlines.com', | |
| 'christiannewsalerts.com', | |
| 'christianpost.com', | |
| 'christiantoday.com', | |
| 'chroniclesmagazine.org', | |
| 'citizenfreepress.com', | |
| 'CAGW.org', | |
| 'citizensunited.org', | |
| 'city-journal.org', | |
| 'nccivitas.org', | |
| 'claremont.org', | |
| 'colddeadhands.us', | |
| 'commentarymagazine.com', | |
| 'concealednation.com', | |
| 'conservativebrief.com', | |
| 'conservativefighters.co', | |
| 'conservativehome.com', | |
| 'conservativehq.com', | |
| 'conservativeinstitute.org', | |
| 'conservativeopinion.com', | |
| 'cpi.org', | |
| 'conservativereview.com', | |
| 'conservativetoday.com', | |
| 'crimeresearch.org', | |
| 'crisismagazine.com', | |
| 'cumulusmedia.com', | |
| 'dailycaller.com', | |
| 'express.co.uk', | |
| 'thedailyliberator.com', | |
| 'dailyreckoning.com', | |
| 'dailysignal.com', | |
| 'telegraph.co.uk', | |
| 'dallasexpress.com', | |
| 'dcenquirer.com', | |
| 'dcstatesman.com', | |
| 'dailytorch.com', | |
| 'telegraaf.nl', | |
| 'disrn.com', | |
| 'teamdml.com', | |
| 'dollarcollapse.com', | |
| 'dorchesterreview.ca', | |
| 'economicpolicyjournal.com', | |
| 'egypttoday.com', | |
| 'energycitizens.org', | |
| 'eppc.org', | |
| 'erlc.com', | |
| 'explainamerica.com', | |
| 'factsandlogic.org', | |
| 'faithwire.com', | |
| 'fakehatecrimes.org', | |
| 'fedsoc.org', | |
| 'fightthenewdrug.org', | |
| 'firstthings.com', | |
| 'floridadaily.com', | |
| 'defenddemocracy.org', | |
| 'freerepublic.com', | |
| 'freedomworks.org', | |
| 'ff.org', | |
| 'fff.org', | |
| 'getreligion.org', | |
| 'g-a-i.org', | |
| 'news.grabien.com', | |
| 'order-order.com', | |
| 'heritage.org', | |
| 'hotair.com', | |
| 'hudson.org', | |
| 'humanevents.com', | |
| 'hurriyet.com.tr', | |
| 'hurriyetdailynews.com', | |
| 'ibleedredwhiteblue.com', | |
| 'illinoispolicy.org', | |
| 'imprimis.hillsdale.edu', | |
| 'ijr.org', | |
| 'iwf.org', | |
| 'influencewatch.org', | |
| 'ifstudies.org', | |
| 'intellectualtakeout.org', | |
| 'investors.com', | |
| 'israelhayom.com', | |
| 'issuesinsights.com', | |
| 'jewishpolicycenter.org', | |
| 'jewishworldreview.com', | |
| 'judicialnetwork.com', | |
| 'kansaspolicy.org', | |
| 'kboi.com', | |
| 'newsradiokkob.com', | |
| 'klif.com', | |
| 'krone.at', | |
| 'kugn.com', | |
| 'kvor.com', | |
| 'latestly.com', | |
| 'lawliberty.org', | |
| 'lawenforcementtoday.com', | |
| 'legalinsurrection.com', | |
| 'journaldemontreal.com', | |
| 'libertyheadlines.com', | |
| 'libertynation.com', | |
| 'loneconservative.com', | |
| 'lozierinstitute.org', | |
| 'manhattan-institute.org', | |
| 'mrc.org', | |
| 'mediarightnews.com', | |
| 'mercatornet.com', | |
| 'milliyet.com.tr', | |
| 'mises.org', | |
| 'mxmnews.com', | |
| 'ncregister.com', | |
| 'nationalcenter.org', | |
| 'NFRW.org', | |
| 'nationalreview.com', | |
| 'newbostonpost.com', | |
| 'newsbusters.org', | |
| 'nysun.com', | |
| 'ngo-monitor.org', | |
| 'notthebee.com', | |
| 'nova24tv.si', | |
| 'nraila.org', | |
| 'ntknetwork.com', | |
| 'numbersusa.com', | |
| 'offgridsurvival.com', | |
| 'oneangrygamer.net', | |
| 'ontarioproud.ca', | |
| 'openvaers.com', | |
| 'opindia.com', | |
| 'opslens.com', | |
| 'outkick.com', | |
| 'panampost.com', | |
| 'pantsonfirenews.com', | |
| 'defendinged.org', | |
| 'patriotnewsalerts.com', | |
| 'patriotnewsdaily.com', | |
| 'pluralist.com', | |
| 'politicalite.com', | |
| 'politichicks.com', | |
| 'powerlineblog.com', | |
| 'conservativesus.party', | |
| 'publicinterestlegal.org', | |
| 'quadrant.org.au', | |
| 'rd.com', | |
| 'americasvoice.news', | |
| 'reclaimthenet.org', | |
| 'ricochet.com', | |
| 'rightandfree.com', | |
| 'ronpaullibertyreport.com', | |
| 'rare.us', | |
| 'sabah.com.tr', | |
| 'savejersey.com', | |
| 'sentinelksmo.org', | |
| 'shorenewsnetwork.com', | |
| 'sbgi.net', | |
| 'skynews.com.au', | |
| 'sonorannews.com', | |
| 'sonsof1776.com', | |
| 'spiked-online.com', | |
| 'tampafp.com', | |
| 'tatumreport.com', | |
| 'tenthamendmentcenter.com', | |
| 'adelaidenow.com.au', | |
| 'americafirstpolicy.com', | |
| 'theamericancause.org', | |
| 'americanmind.org', | |
| 'thecollegefix.com', | |
| 'conservativewoman.co.uk', | |
| 'dailytelegraph.com.au', | |
| 'dailywire.com', | |
| 'thefirsttv.com', | |
| 'thehonestpatriot.net', | |
| 'econlib.org', | |
| 'thenationalherald.com', | |
| 'thenewamerican.com', | |
| 'thenewrevere.com', | |
| 'patriotpost.us', | |
| 'thepostmillennial.com', | |
| 'punchingbagpost.com', | |
| 'thestar.com.my', | |
| 'thesun.co.uk', | |
| 'thetexan.news', | |
| 'thetruthaboutguns.com', | |
| 'the-sun.com', | |
| 'timcast.com', | |
| 'tippinsights.com', | |
| 'torontosun.com', | |
| 'trendingviews.co', | |
| 'tnc.news', | |
| 'trtworld.com', | |
| 'tvp.info', | |
| 'twitchy.com', | |
| 'unwatch.org', | |
| 'valiantnews.com', | |
| 'valuetainment.com', | |
| 'washingtonexaminer.com', | |
| 'freebeacon.com', | |
| 'watchdogreport.org', | |
| 'wbap.com', | |
| 'weaselzippers.us', | |
| 'westernstandard.news', | |
| 'wfnc640am.com', | |
| 'wgowam.com', | |
| 'talk1270.com', | |
| 'wikiislam.net', | |
| 'wlsam.com', | |
| 'worldisraelnews.com', | |
| 'world.wng.org', | |
| '1490wosh.com', | |
| 'wtma.com', | |
| 'yellowhammernews.com', | |
| 'yaf.org', | |
| '21stcenturywire.com', | |
| '369news.net', | |
| '911truth.org', | |
| 'abovetopsecret.com', | |
| 'acallforanuprising.com', | |
| 'latitudes.org', | |
| 'activistpost.com', | |
| 'additudemag.com', | |
| 'ageofautism.com', | |
| 'newsinstact.com', | |
| 'allianceforadvancedhealth.com', | |
| 'anhinternational.org', | |
| 'anh-usa.org', | |
| 'altermedzentrum.com', | |
| 'thealternativedaily.com', | |
| 'amtvmedia.com', | |
| 'alternativenews.com', | |
| 'althealthworks.com', | |
| 'americandigitalnews.com', | |
| 'americanfreepress.net', | |
| 'aim4truth.org', | |
| 'amg-news.com', | |
| 'americanpolicy.org', | |
| 'americasfrontlinedoctors.com', | |
| 'ancient-code.com', | |
| 'ancient-origins.net', | |
| 'andmagazine.com', | |
| 'answersingenesis.org', | |
| 'anti-empire.com', | |
| 'anyavien.com', | |
| 'ae911truth.org', | |
| 'asia-pacificresearch.com', | |
| 'assassinationscience.com', | |
| 'australiannationalreview.com', | |
| 'autismspeaks.org', | |
| 'awakecanada.org', | |
| 'awarenessact.com', | |
| 'beholdisrael.org', | |
| 'bestnewshere.com', | |
| 'biggovernment.news', | |
| 'biodefense.com', | |
| 'biologos.org', | |
| 'bioscienceresource.org', | |
| 'biotechexpressmag.com', | |
| 'blacklistednews.com', | |
| 'bonsens.info', | |
| 'brandnewtube.com', | |
| 'brighteon.com', | |
| 'brightside.me', | |
| 'canberradeclaration.org.au', | |
| 'catholic.org', | |
| 'charismanews.com', | |
| 'childrenshealthdefense.org', | |
| 'carm.org', | |
| 'www1.cbn.com', | |
| 'creation.com', | |
| 'christianscience.com', | |
| 'Christiantruthcenter.com', | |
| 'legitgov.org', | |
| 'climatechangedispatch.com', | |
| 'climatedepot.com', | |
| 'judithcurry.com', | |
| 'cnnsofake.news', | |
| 'coasttocoastam.com', | |
| 'collective-evolution.com', | |
| 'cfact.org', | |
| 'consciouslifenews.com', | |
| 'conspiracydailyupdate.com', | |
| 'consumerwellness.org', | |
| 'coreysdigs.com', | |
| 'corruptico.com', | |
| 'cosmicintelligenceagency.com', | |
| 'geopolitics.co', | |
| 'covidcalltohumanity.org', | |
| 'creationwiki.org', | |
| 'csglobe.com', | |
| 'billmuehlenberg.com', | |
| 'cureus.com', | |
| 'curiousmindmagazine.com', | |
| 'dailyclout.io', | |
| 'dailygrail.com', | |
| 'dailyhealthpost.com', | |
| 'dailysceptic.org', | |
| 'darkjournalist.com', | |
| 'davidicke.com', | |
| 'davidwolfe.com', | |
| 'discovery.org', | |
| 'disobedientmedia.com', | |
| 'dissidentvoice.org', | |
| 'doctoroz.com', | |
| 'doctors4covidethics.org', | |
| 'dollarvigilante.com', | |
| 'draxe.com', | |
| 'drmorse.tv', | |
| 'earthpulse.com', | |
| 'educateinspirechange.org', | |
| 'educate-yourself.org', | |
| 'electroverse.net', | |
| 'eluxemagazine.com', | |
| 'ewg.org', | |
| 'escapeallthesethings.com', | |
| 'europereloaded.com', | |
| 'evolutionnews.org', | |
| 'fabiosa.com', | |
| 'faithit.com', | |
| 'faithpanda.com', | |
| 'foodbabe.com', | |
| 'foodmatters.com', | |
| 'foreverconscious.com', | |
| 'thefreethoughtproject.com', | |
| 'freedomadvocates.org', | |
| 'freedomainradio.com', | |
| 'friendsofscience.org', | |
| 'covid19criticalcare.com', | |
| 'fully-human.org', | |
| 'gaia.com', | |
| 'geoengineeringwatch.org', | |
| 'getholistichealth.com', | |
| 'globalhealingcenter.com', | |
| 'globalresearch.ca', | |
| 'gmowatch.com', | |
| 'gmwatch.org', | |
| 'godlikeproductions.com', | |
| 'gotquestions.org', | |
| 'govtslaves.com', | |
| 'greenmedinfo.com', | |
| 'greenpeace.org', | |
| 'healthandmoneynews.wordpress.com', | |
| 'healingfoodreference.com', | |
| 'healingoracle.ch', | |
| 'healthimpactnews.com', | |
| 'healthnutnews.com', | |
| 'healthrangerreport.com', | |
| 'hsionline.com', | |
| 'healthyandnaturalworld.com', | |
| 'healthyfoodhouse.com', | |
| 'healthy-holistic-living.com', | |
| 'savethemales.ca', | |
| 'herb.co', | |
| 'higherperspectives.com', | |
| 'homeopathyjournal.net', | |
| 'homevaccineeducationnetwork.com', | |
| 'humansarefree.com', | |
| 'icandecide.org', | |
| 'ihealthtube.com', | |
| 'iheartintelligence.com', | |
| 'illuminatiwatcher.com', | |
| 'independentsciencenews.org', | |
| 'infiniteunknown.net', | |
| 'informationclearinghouse.info', | |
| 'infowars.com', | |
| 'icr.org', | |
| 'responsibletechnology.org', | |
| 'ICSC', | |
| 'investmentwatchblog.com', | |
| 'iowaclimate.org', | |
| 'irishsentinel.com', | |
| 'israel365news.com', | |
| 'jedanews.com', | |
| 'JW.org', | |
| 'jesus-is-savior.com', | |
| 'junkscience.com', | |
| 'larouchepac.com', | |
| 'learntherisk.org', | |
| 'leftcult.com', | |
| 'lesmoutonsrebelles.com', | |
| 'libertyplanets.com', | |
| 'lifespa.com', | |
| 'littlethings.com', | |
| 'liveaction.org', | |
| 'livestrong.com', | |
| 'livingwhole.org', | |
| 'endlockdowns.org', | |
| 'maloneinstitute.org', | |
| 'mediafactwatch.com', | |
| 'mediaroots.org', | |
| 'medicalcensorship.com', | |
| 'medicaldaily.com', | |
| 'medicalkidnap.com', | |
| 'medicalmedium.com', | |
| 'medicaltyranny.com', | |
| 'medicine.news', | |
| 'mercola.com', | |
| 'mindbodygreen.com', | |
| 'modernalternativemama.com', | |
| 'nationalfile.com', | |
| 'nvic.org', | |
| 'naturalcures.com', | |
| 'naturalhealth365.com', | |
| 'naturalnews.com', | |
| 'naturalnewsradio.com', | |
| 'naturalsociety.com', | |
| 'naturallysavvy.com', | |
| 'needtoknow.news', | |
| 'neonnettle.com', | |
| 'newsinsideout.com', | |
| 'newstarget.com', | |
| 'notrickszone.com', | |
| 'nowtheendbegins.com', | |
| 'nutritionfacts.org', | |
| 'nworeport.me', | |
| 'odysee.com', | |
| 'online-updates.net', | |
| 'organicconsumers.org', | |
| 'organicfacts.net', | |
| 'ourhealthguides.com', | |
| 'pandemic.news', | |
| 'patriots4truth.org', | |
| 'peta.org', | |
| 'philosophers-stone.info', | |
| 'physiciansforinformedconsent.org', | |
| 'prepareforchange.net', | |
| 'pressfortruth.ca', | |
| 'prevention.com', | |
| 'principia-scientific.org', | |
| 'pdmj.org', | |
| 'prisonplanet.com', | |
| 'prophecynewswatch.com', | |
| 'prophecytoday.com', | |
| 'realclimatescience.com', | |
| 'realjewnews.com', | |
| 'realnews24.com', | |
| 'redoubtnews.com', | |
| 'redpillpodcasts.com', | |
| 'renegadetribune.com', | |
| 'rense.com', | |
| 'returntonow.net', | |
| 'rumormillnews.com', | |
| 'sanevax.org', | |
| 'santeplusmag.com', | |
| 'sciencevibe.com', | |
| 'sgtreport.com', | |
| 'sheepkillers.com', | |
| 'shoebat.com', | |
| 'sott.net', | |
| 'skeptiko.com', | |
| 'space.news', | |
| 'sitsshow.blogspot.com', | |
| 'stormfront.org', | |
| 'sustainablepulse.com', | |
| 'swprs.org', | |
| 'annunaki.org', | |
| 'theautomaticearth.com', | |
| 'thecommonsenseshow.com', | |
| 'corbettreport.com', | |
| 'dailyexpose.co.uk', | |
| 'thedailysheeple.com', | |
| 'childrenshealthdefense.orgdefender', | |
| 'eutimes.net', | |
| 'theeventchronicle.com', | |
| 'thefullertoninformer.com', | |
| 'greanvillepost.com', | |
| 'healthranger.com', | |
| 'thehealthyamerican.org', | |
| 'theheartysoul.com', | |
| 'thehighwire.com', | |
| 'thelibertybeacon.com', | |
| 'themindunleashed.org', | |
| 'newnationalist.net', | |
| 'thepulse.one', | |
| 'thepuristonline.com', | |
| 'therundownlive.com', | |
| 'stream.org', | |
| 'thetrumpet.com', | |
| 'thetruthaboutcancer.com', | |
| 'thetruthseeker.co.uk', | |
| 'thevaccinereaction.org', | |
| 'vermontindependent.org', | |
| 'wakingtimes.com', | |
| 'thinkinghumanity.com', | |
| 'thoughtcatalog.com', | |
| 'thoughtcrimeradio.net', | |
| 'thriveglobal.com', | |
| 'thrivemovement.com', | |
| 'trialsitenews.com', | |
| 'trunews.com', | |
| 'twisted.news', | |
| 'unlimitedhangout.com', | |
| 'ukcolumn.org', | |
| 'usahitman.com', | |
| 'usawatchdog.com', | |
| 'vaccineimpact.com', | |
| 'vaccines.news', | |
| 'vaccinepapers.org', | |
| 'vaccinesrevealed.com', | |
| 'vaccinesafety.info', | |
| 'vacsafety.org', | |
| 'vactruth.com', | |
| 'vaxxter.com', | |
| 'veteranstoday.com', | |
| 'vigilantcitizen.com', | |
| 'wattsupwiththat.com', | |
| 'anonhq.com', | |
| 'wearechange.org', | |
| 'westonaprice.org', | |
| 'whatreallyhappened.com', | |
| 'whatdoesitmean.com', | |
| 'wide-awake-media.com', | |
| 'wikispooks.com', | |
| 'winterwatch.net', | |
| 'worldaffairs.blog', | |
| 'worldaffairsbrief.com', | |
| 'worldcouncilforhealth.org', | |
| 'worlddoctorsalliance.com', | |
| 'worldlifestyle.com', | |
| 'worldtruth.tv', | |
| 'worldviewweekend.com', | |
| 'x22report.com', | |
| 'zerohedge.com' | |
| ]; | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment