Fix #227109 endfield.gryphline.com Annoyances – cookie notice#227111
Fix #227109 endfield.gryphline.com Annoyances – cookie notice#227111
Conversation
| ! | ||
| ! NOTE: Regular rules | ||
| ! | ||
| endfield.gryphline.com##body > div:has(a[href*="/cookiesPolicy"]) |
There was a problem hiding this comment.
This website's cookie notice lacks a unique selector name. It can only be solved with the :has selector.
Another way to resolve it is with a scriptlet—'set-cookie'. Which method is preferred here? 🤔
endfield.gryphline.com#%#//scriptlet('set-cookie', 'cookieAccepter', '1')There was a problem hiding this comment.
This website's cookie notice lacks a unique selector name. It can only be solved with the :has selector.
Another way to resolve it is with a scriptlet—'set-cookie'. Which method is preferred here? 🤔
@piquark6046 I would like to hear your opinion on this case 👀
There was a problem hiding this comment.
I think that the current cosmetic filter is ok.
Did you check https://endfield.gryphline.com/en-us/protocol/privacy_policy ?
| ! | ||
| ! NOTE: Regular rules | ||
| ! | ||
| endfield.gryphline.com##body > div:has(a[href$="/cookiesPolicy"]) |
There was a problem hiding this comment.
div:has(a is dangerous. It may hide more than necessary if the nesting of elements changes (which sometimes happens)
Better endfield.gryphline.com##body > div[class*=" "]:has(> div > span > a[href*="/cookiesPolicy"])
Also I see a cookie notification on the main page. Check another subdomains.
To avoid invalid pull requests, please check and confirm following terms
What problem does the pull request fix?
If the problem does not fall under any category that is listed here, please write a comment below in corresponding section
What issue is being fixed?
Enter the issue address
Fix #227109 endfield.gryphline.com Annoyances – cookie notice
Terms