Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust scriptlet injection timing #3162

Merged
merged 2 commits into from
Apr 2, 2023

Conversation

DrRoot-github
Copy link
Contributor

@DrRoot-github DrRoot-github commented Mar 30, 2023

Release Notes

Resolves #2757

Changed the timing of scriptlet injection to before the DOMContentLoaded event fires. Also changed the injection method from using Electron.WebContents.executeJavaScript (which is effectively executed when the tab finishes loading) to dynamically adding a script element, similar to how μBlock Origin does it.

@Araxeus
Copy link

Araxeus commented Mar 30, 2023

I'm not related to this repo in any way, but it might be better to have a descriptive commit message + PR description

@DrRoot-github
Copy link
Contributor Author

I'm not related to this repo in any way, but it might be better to have a descriptive commit message + PR description

thank you, I wrote it.
AI is helping me with translation, so it might be hard to understand. sorry about that.

Copy link
Collaborator

@remusao remusao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for your contribution @DrRoot-github. I left two comments for simplification. Overall it looks great! This has been a long standing issue.

@remusao remusao added the PR: Bug Fix 🐛 Increment patch version when merged label Apr 2, 2023
@remusao remusao changed the title adjust injection timing Adjust scriptlets injection timing Apr 2, 2023
@remusao remusao changed the title Adjust scriptlets injection timing Adjust scriptlet injection timing Apr 2, 2023
@remusao remusao merged commit 7782d67 into ghostery:master Apr 2, 2023
@remusao
Copy link
Collaborator

remusao commented Apr 2, 2023

Thanks a lot @DrRoot-github, this change will be released shortly.

@remusao
Copy link
Collaborator

remusao commented Apr 2, 2023

Released: https://github.com/ghostery/adblocker/releases/tag/v1.26.4

return ipcRenderer.sendSync('get-cosmetic-filters-first', window.location.href);
}
function getCosmeticsFiltersUpdate(data: Omit<IBackgroundCallback, 'lifecycle'>) {
setImmediate(() => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function is no longer present in modern browsers, and as such breaks the latest release on my system.
https://developer.mozilla.org/en-US/docs/Web/API/Window/setImmediate#browser_compatibility
@remusao

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh shit I really don't know that. I'll fix it as soon as possible:sob:

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I replace it with setTimeout I no longer get errors, but I still see ads on youtube, more than before... So maybe that's not the correct replacement. I had to inject the blocker in a custom way though, so I'll look into that first and get back when I know more.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I replace it with setTimeout I no longer get errors, but I still see ads on youtube, more than before

Weird... Isn't the difference between setImmediate and setTimeout just about 4ms?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a thought, but do we still need this setImmediate?
We separated the method called in the first call, and since this method is called at DOMContentLoaded, I feel like the processing won't change whether we execute it immediately or insert a wait.

@Jelmerro
By the way, I'm curious about the issue of more ads showing up than before. Could you show me the Console and Network tabs in Devtools if you don't mind?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#3166
I submitted a PR for the fix. I'll also test it in the Vieb environment, so there might be some parts that still need to be fixed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Jelmerro
I briefly looked at the source code, but it seems like the block list is pulled from /app/blocklists/list.json, which contains two files: easylist.txt and easyprivacy.txt. However, the scriptlet to block video ads at the beginning is not included in these two files, so if there are no other lists being read, I don't think it can block the initial video ad. Specifically, the following entries are required:

youtube.com, youtubekids.com, youtube-nocookie.com##+js(json-prune, [].playerResponse.adPlacements [].playerResponse.playerAds playerResponse.adPlacements playerResponse.playerAds adPlacements playerAds)
youtube.com, youtubekids.com, youtube-nocookie.com##+js(set, ytInitialPlayerResponse.adPlacements, undefined)
youtube.com, youtubekids.com, youtube-nocookie.com##+js(set, playerResponse.adPlacements, undefined)

Copy link
Contributor

@Jelmerro Jelmerro Apr 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for looking into this, I will see if this makes it work. Do you happen to know which list used by ghostery includes these by default?

Update: these lines do make it work!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://github.com/ghostery/adblocker/blob/master/packages/adblocker/src/fetch.ts
The URLs that are eventually loaded by fromPrebuiltAdsAndTracking and other functions are hard-coded here.

Copy link
Contributor

@Jelmerro Jelmerro Apr 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found, it is this one: packages/adblocker/assets/ublock-origin/filters.txt:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Bug Fix 🐛 Increment patch version when merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

YouTube ads on first load
4 participants