├── .editorconfig ├── .github └── workflows │ ├── cs-lint.yml │ └── integrations.yml ├── .gitignore ├── .phpcs.xml.dist ├── adbusters.php ├── bin └── install-wp-tests.sh ├── composer.json ├── license.txt ├── phpunit.xml.dist ├── readme.md ├── readme.txt ├── templates ├── _uac │ └── adpage.html ├── adcom │ └── aceFIF.html ├── adinterax │ └── adx-iframe-v2.html ├── atlas │ └── atlas_rm.htm ├── blogads │ └── iframebuster-4.html ├── checkm8 │ └── CM8IframeBuster.html ├── comscore │ └── cs-arIframe.htm ├── doubleclick │ ├── DARTIframe.html │ ├── TLIframe.html │ ├── adx_iframe.html │ └── fif.html ├── flite │ └── fif.html ├── gumgum │ └── iframe_buster.html ├── jpd │ └── jpxdm.html ├── knorex │ └── knorex_psf.html ├── linkstorm │ └── linkstorm_certified.html ├── oggifinogi │ └── oggiPlayerLoader.htm ├── pictela │ └── Pictela_iframeproxy.html ├── pointroll │ └── PointRollAds.htm ├── rubicon │ ├── rp-smartfile.html │ └── rubicon.js ├── saymedia │ └── iframebuster.html └── xaxis │ └── InfinityIframe.html └── tests └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/cs-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/.github/workflows/cs-lint.yml -------------------------------------------------------------------------------- /.github/workflows/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/.github/workflows/integrations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /adbusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/adbusters.php -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/composer.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/license.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/readme.txt -------------------------------------------------------------------------------- /templates/_uac/adpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/_uac/adpage.html -------------------------------------------------------------------------------- /templates/adcom/aceFIF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/adcom/aceFIF.html -------------------------------------------------------------------------------- /templates/adinterax/adx-iframe-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/adinterax/adx-iframe-v2.html -------------------------------------------------------------------------------- /templates/atlas/atlas_rm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/atlas/atlas_rm.htm -------------------------------------------------------------------------------- /templates/blogads/iframebuster-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/blogads/iframebuster-4.html -------------------------------------------------------------------------------- /templates/checkm8/CM8IframeBuster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/checkm8/CM8IframeBuster.html -------------------------------------------------------------------------------- /templates/comscore/cs-arIframe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/comscore/cs-arIframe.htm -------------------------------------------------------------------------------- /templates/doubleclick/DARTIframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/doubleclick/DARTIframe.html -------------------------------------------------------------------------------- /templates/doubleclick/TLIframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/doubleclick/TLIframe.html -------------------------------------------------------------------------------- /templates/doubleclick/adx_iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/doubleclick/adx_iframe.html -------------------------------------------------------------------------------- /templates/doubleclick/fif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/doubleclick/fif.html -------------------------------------------------------------------------------- /templates/flite/fif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/flite/fif.html -------------------------------------------------------------------------------- /templates/gumgum/iframe_buster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/gumgum/iframe_buster.html -------------------------------------------------------------------------------- /templates/jpd/jpxdm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/jpd/jpxdm.html -------------------------------------------------------------------------------- /templates/knorex/knorex_psf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/knorex/knorex_psf.html -------------------------------------------------------------------------------- /templates/linkstorm/linkstorm_certified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/linkstorm/linkstorm_certified.html -------------------------------------------------------------------------------- /templates/oggifinogi/oggiPlayerLoader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/oggifinogi/oggiPlayerLoader.htm -------------------------------------------------------------------------------- /templates/pictela/Pictela_iframeproxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/pictela/Pictela_iframeproxy.html -------------------------------------------------------------------------------- /templates/pointroll/PointRollAds.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/pointroll/PointRollAds.htm -------------------------------------------------------------------------------- /templates/rubicon/rp-smartfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/rubicon/rp-smartfile.html -------------------------------------------------------------------------------- /templates/rubicon/rubicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/rubicon/rubicon.js -------------------------------------------------------------------------------- /templates/saymedia/iframebuster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/saymedia/iframebuster.html -------------------------------------------------------------------------------- /templates/xaxis/InfinityIframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/templates/xaxis/InfinityIframe.html -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Adbusters/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------