Can I block javascripts using ABP?
Can I block javascripts using ABP?
I would like to block a specific javascript from loading on any webpage. Can I block a particular javascript through its URL, that ends in .js, using ABP?
Re: Can I block javascripts using ABP?
Yes, like any other external resource.
Re: Can I block javascripts using ABP?
And how do you do that exactly?mapx wrote:Yes, like any other external resource.
Re: Can I block javascripts using ABP?
provide your example and explain what do you want to block.
Re: Can I block javascripts using ABP?
for example you want to block all the scripts on example.com domain:
||example.com^$script
or only namescript.js on the same domain
||example.com/*namescript.js^$script
more about filters
en/filters
||example.com^$script
or only namescript.js on the same domain
||example.com/*namescript.js^$script
more about filters
en/filters
Re: Can I block javascripts using ABP?
Thanks for the answer. I would like to block http://www.airtel.in/dot/js/common.js & http://www.airtel.in/dot/js/jquery-1.11.1.min.js compltely. How can I do that?mapx wrote:for example you want to block all the scripts on example.com domain:
||example.com^$script
or only namescript.js on the same domain
||example.com/*namescript.js^$script
more about filters
https://adblockplus.org/en/filters
Re: Can I block javascripts using ABP?
as in the example above
Code: Select all
||airtel.in/dot/js/common.js
||airtel.in/dot/js/jquery-1.11.1.min.js
Re: Can I block javascripts using ABP?
Thanks, for helpingmapx wrote:as in the example aboveCode: Select all
||airtel.in/dot/js/common.js ||airtel.in/dot/js/jquery-1.11.1.min.js
