Archive pages without ads or trackers
A flag that defaults to off for archiving without ads/trackers.
None
One potential solution outside of ArchieveBox would be to have some type of a network-wide DNS ad blocking, such as a Pi-hole
I haven't tried this, but you might be able to achieve similar by installing certain extensions uBlock Origin, Decentraleyes, etc.
Currently, adblocking during PDF/Screenshot/DOM archiving is already possible by using a CHROME_USER_DATA_DIR with a profile that has an adblocker installed. In the future it will be doable in a few more ways though:
At the network level:
chromium --proxy-server=http://localhost:8080 --ignore-certificate-errors --disable-web-security https://some.site.withads.comAt the application level:
As we get closer to integrating pyppeteer (#177), pywb (#130), and custom user scripts (#51) I'll check back and update this issue with progress.
Most helpful comment
Currently, adblocking during PDF/Screenshot/DOM archiving is already possible by using a
CHROME_USER_DATA_DIRwith a profile that has an adblocker installed. In the future it will be doable in a few more ways though:At the network level:
chromium --proxy-server=http://localhost:8080 --ignore-certificate-errors --disable-web-security https://some.site.withads.comAt the application level:
As we get closer to integrating pyppeteer (#177), pywb (#130), and custom user scripts (#51) I'll check back and update this issue with progress.