In the Varanida plugin, the URLs seem to be blocked when a “JPN: ABP Japanese filters (日本用フィルタ)” filter is enabled.
In the Adblock i am not sure, it does not allow disabling different filters.
Either way, the problem seems to be that the CSS and JavaScript file names start with “adverts-” and the adblocks block the files just because of that.
Right now i am afraid there is no easy way around this, sorry. The file names need to be changed in WPAdverts in order to resolve it, i will do that in the next WPAdverts release.
In the mean time if you would like to do it yourself, then you can rename the two files:
– wpadverts/assets/js/adverts-frontend.js -> wpadverts-frontend.js
– wpadverts/assets/css/adverts-frontend.css -> wpadverts-frontend.css
Then open wpadverts/wpadverts.php file and change lines
wp_register_style( 'adverts-frontend', ADVERTS_URL . '/assets/css/adverts-frontend.css', array(), "1.3.2" );
to
wp_register_style( 'adverts-frontend', ADVERTS_URL . '/assets/css/wpadverts-frontend.css', array(), "1.3.2" );
and
wp_register_script('adverts-frontend', ADVERTS_URL . '/assets/js/adverts-frontend.js', array( 'jquery' ), "1.3.2" );
to
wp_register_script('adverts-frontend', ADVERTS_URL . '/assets/js/wpadverts-frontend.js', array( 'jquery' ), "1.3.2" );