I have a personal SPA running Vue, which uses a library (lets call it foo
). foo
download a javascript file called bar.js
and then execute it. Everything works as expected, but in bar.js
there is an https call (https://fixed-domain/fixed-param) which slows down my SPA significantly. I've tested with uBlock Origin extension that simply blocking the call would solve my problem.
So, is there a way to block that https call from my Vue app? I've try reading the source code of uBlock but it is too complicated for me to re-implement it.