uBlock Origin
-
sambini last edited by
@fckopera The error you get is because the code is trying to do .split() on something that hasn't got proper error handling for undefined.
Looking at the PB, if you replace the first instance of .split
domain + ' ' + prefix.split('.').reverse().join('.')with
domain + ' ' + (typeof prefix === 'string' ? prefix.split('.').reverse().join('.') : '')then replace the second instance
const ruleParts = rule !== undefined ? rule.split(' ') : undefined;with
const ruleParts = typeof rule === 'string' ? rule.split(' ') : undefined;and finally replace
if ( v === null ) { return; }with
if (typeof v !== 'string') { return; }Or you could just uninstall it and install uBlock Origin Lite from the Chrome Webstore, which is the latest version that is V3 compliant and has never let me down in regards to YT ads.
-
PaweloxX last edited by
This is the best ad blocker for blocking ads. It works extremely well and even allows you to watch YouTube videos completely without ads. I highly recommend this blocker!
-
Leo-F34 last edited by
@kacperopera: it no longer does you may be thinking of uBlock lite or other non-origin versions but atleast it works now on everything so try again and look at the icon if its anything but dark red then click it
-
konigfisch last edited by
use this together with youtube enhancer to fix youtube and return youtube dislike (those two only on chrome store as far as i know but it adds into opera the same way)
i only ever get ads when the extensions dont load fast enough after freshly starting up the browser otherwise enhancer also fixes the ui and gives you a lot of options for the color scheme and all the other features its got
never got ads through yt updates for the past half a year and i only have these 3 extensions -
konigfisch last edited by
@DarkFusionPlayz Enhancer for YouTube
(16.7k ratings on chromewebstore) and Return YouTube Dislike (19k ratings on chromewebstore)
giving the rating numbers for another identification mark
opera is a chromium based browser so extensions from chromewebstore work exactly the same