[http://www.inoreader.com/]
Requires a free subscription (login with Google account is fine too).
I'm trying to eliminate the right ads bar on inoreader.com.
By using the following uBlock handmade filter I've been able to remove a layer but I still have an empty bar on the right:
! 7/24/2017, 10:14:54 PM https://www.inoreader.com/feed/*
www.inoreader.com###sinner_container
Any idea how I can remove such bar and expand the text of the articles?
Without the filter: https://anonimag.es/i/5357c3e44c6282cab67ad259cb5bff7e.png
With the filter: https://anonimag.es/i/fb53724ba89612d1f84c752e8ea9862b.png
inoreader.com###reader_pane:style(padding-right: 0px !important;)
inoreader.com###sinner_container
or
inoreader.com###sinner_container:style(display:none !important;)
inoreader.com###reader_pane:style(padding-right: 0px !important;)
As you can see I added a commit 3 hours ago, just update your lists.
Thanks, but that commit, while hiding the warning, doesn't actually allow you to use the keyboard afterwards since the dialog is really still there (just hidden).
I think it'll take preventing the dialog from coming up in the first place.
Test this filter, see if works
||inoreader.com/adv/$script,redirect=noopjs,first-party
That restored kb use in Chrome, but didn't in my main browser (based on Chromium). I eventually figured out that was because in that browser I'm running a userscript for the site, and that userscript must counteract your line. Unclear if it's possible to use them together.
OK, so you reverted the previous change and went with that line, which works (the issue I mentioned aside), but with this line in EasyList, why did it turn out to be needed? It seems like they should both effectively do the same thing, but clearly not.
.com/adv/
read about redirecting
https://github.com/gorhill/uBlock/wiki/Static-filter-syntax#redirect
Yes, I had read that. So, in one case, it's redirected to a dummy resource. And in the other case, it's blocked. Two different ways, seemingly, of accomplishing the same thing.
In this case the site is testing if https://www.inoreader.com/adv/www/delivery/ajs.php still exists, if not => the anti adb overlay is enabled
$v.html().indexOf('/adv/www/delivery/ajs.php')===-1
so, it's important to have at least a neutered version of that object
I see that you further refined it. Still works great, but I'm wondering if this is the best place to bring up an issue also beyond me that predates the most recent one: the "scroll tracking" feature (Mark items as read when you scroll past them) doesn't work in some circumstances. It's mainly noticeable in list view, where you'll see that scrolling only goes so far, if it goes at all, breaking the feature. It happens in some other views too, depending on the number/size of the articles.
I think it's something to do with the way that ads, or maybe the spacing, above and below the content are being handled . This can be seen by disabling EasyList, which reveals large gaps above and below the content, with "Remove ads" links nearby. Scroll tracking works when it's in that state, but of course that's not a great state. I have a feeling that a tweak to the filter that handles these ads/spacing would fix it.
@mapx - Looks like the problem is back today.
I get it randomly, test these filters:
@@||inoreader.com/adv/$first-party,script,image
||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=inoreader.com
@@||inoreader.com^$generichide
inoreader.com##.ad_title
Yes, it was random, but those changes seem to have fixed it. They do leave a gap above the articles, but coincidentally that solves the scrolling issue I mentioned yesterday.
The filters for this site have now disabled the sign in functionality....
Interesting, I didn't see that happen, but then I never explicitly log out, so I'm always auto-logged in. Do you log out?
I only have a test account, I am not a user of the site and inoreader.com##.inno_dialog_modal hides

which is the reason I have removed it.
There are some other entries that are not needed as far as I can see, for example the exception filters, but the site will no doubt change up in a matter of hours/days anyway.
I'm getting adblock detected screens again!
Did you force an update right now ?
Yessir!
If you still see a setTimeout filter in your logger => the update failed => purge & update your lists
12:21:46 | | Cosmetic filtering – invalid filter: .side-right /deep/ [id^="ecbr-"]
-- | -- | --
12:21:46 | | Cosmetic filtering – invalid filter: .side-left /deep/ [id^="ecbr-"]
12:21:46 | | | | xhr | https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt?_=214457
Looks okay?
Nothing to do with inoreader, read again what I wrote above. Did you purge + update your lists ??
Yes of course
Can't reproduce at the moment though, since the popup doesn't always show up.
Just had one again. Fully updated
add
inoreader.com##[id*="modal_overlay"]
inoreader.com##.adb_left:xpath(../..)
I'll try! Thanks
or ... being an annoyance you could simply click "not for this session" button (or something like that)
@mapx- commented on 2018. dec. 8. 09:53 CET:
add
inoreader.com##[id*="modal_overlay"] inoreader.com##.adb_left:xpath(../..)
Thanks. It worked for me too.
But there's a huge issue. The website hotkeys won't work this way. Can't refresh feeds, mark all as read, etc.
They're setting aguineapigtrickedme cookie for 1 day which hides the "adblock detecteed" dialog.
add
inoreader.com##[id*="modal_overlay"] inoreader.com##.adb_left:xpath(../..)
Thanks mapx
For me, only the hotkeys don't work, which is extremely inconvenient. I can refresh feeds, mark all as read.
Don't use those lines.
Don't use those lines.
Then a popup appears
Once a day, which is better than no hotkeys.
Once a day, which is better than no hotkeys.
Yes, I will agree, perhaps :)
I have hidden the "adblock detecteed" dialog. However, I hope that inoreader has enough funds to support free users. I don't provide the code directly here. Actually the complete code is in my gist.
Tip Use :not
@maboloshi, hotkeys with your rules doesn't work too.
Better solution is click not now and protect the cookie aguineapigtrickedme.
@maboloshi, hotkeys with your rules doesn't work too.
Better solution is clicknot nowand protect the cookieaguineapigtrickedme.
Thanks. Is it possible to extend the validity period or only one day?
https://hostingkartinok.com/show-image.php?id=28a3c66309b096e2dbc0eb5ef52fbe64
@mikhaelkh According to your idea, you can solve it with a simple userjavascript file.
// ==UserScript==
// @name Hide Inoreader Ad
// @include http://www.inoreader.com/*
// @include https://www.inoreader.com/*
// @icon http://www.inoreader.com/favicon.ico
// @grant none
// ==/UserScript==
document.cookie = "aguineapigtrickedme=1; path=/; ";
Before trying userjavascript, you need to click "not now". Now, the hotkeys work properly.
@maboloshi I manually increased duration of the cookie, works so far
@mikhaelkh, I forgot to click ‘not now‘ before I tried the userjavascript. Now, the hotkeys work properly. Thank you ideas.
Any way to do this with uBlock?
On Fri, 21 Dec 2018 at 04:10, 沙漠之子 notifications@github.com wrote:
@mikhaelkh https://github.com/mikhaelkh, I forgot to click ‘not now‘
before I tried the userjavascript. Now, the hotkeys work properly. Thank
you ideas.—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/uBlockOrigin/uAssets/issues/582#issuecomment-449226765,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ADdzU5EJaNr0WrVAGASQfG-z1Nok1CSCks5u7FEqgaJpZM4OjkyC
.
@maboloshi, hotkeys with your rules doesn't work too.
Better solution is clicknot nowand protect the cookieaguineapigtrickedme.
Thanks
@maboloshi commented on 2018. dec. 19. 16:50 CET:
@mikhaelkh According to your idea, you can solve it with a simple userjavascript file.
// ==UserScript== // @name Hide Inoreader Ad // @include http://www.inoreader.com/* // @include https://www.inoreader.com/* // @icon http://www.inoreader.com/favicon.ico // @grant none // ==/UserScript== document.cookie = "aguineapigtrickedme=1; path=/; ";Before trying userjavascript, you need to click "not now". Now, the hotkeys work properly.
What is this supposed to do? I still get the adblock detected warning.
That's because the site no longer uses a cookie for that (I expect that they're subscribed to this thread).
@rpodric commented on 2019. jan. 7. 18:10 CET:
That's because the site no longer uses a cookie for that (I expect that they're subscribed to this thread).
Oh, well... That didn't last long.
What's the point in exception filters if they don't prevent anti-adblock popup?
Use userjavascript shielding function adb_detected.
Why closed? @mapx-
Did you test the site ? is working for now
Most helpful comment
add