The website www.refdag.nl shows its contents depending on the day: on Sunday they do not want their readers to read articles for religious reasons. The javascript that they use to accomplish this is as follows:
http://www.refdag.nl/js/common/sunday_block.js
Thus, changing the customer date is already a solution to solve this problem. Turning off all Javascript is also possible. But it would be better if I just left only part of the above script on the client.
What is a good solution for this? Blocking the above file does not work, because the site uses one giant javascript file, where files like these are added to each other (http://www.refdag.nl/js/www.refdag.nl-bundle.js? Ed = 3994). Are there any plugins for Chrome in which you can rewrite javascript before it loads or something else?
source
share