Andrey Meshkov
Andrey Meshkov
@ameshkov commented on [Mon Aug 21 2017](https://github.com/AdguardTeam/AdguardFilters/issues/6385) The problem is that Samsung cannot handle `^` symbol when it means the end of URL: For instance: `||google-analytics.com/analytics.js^` won't match `https://google-analytics.com/analytics.js` To...
@realodix commented on [Thu Nov 25 2021](https://github.com/AdguardTeam/FiltersRegistry/issues/545) Looks like AdGuard doesn't support regex flags for `:matches-css()`. I didn't notice until I saw https://github.com/AdguardTeam/AdguardFilters/issues/101083 and read the [documentation](https://kb.adguard.com/en/general/how-to-create-your-own-ad-filters#pseudo-class-matches-css), because in the...
The source for this task is here: https://github.com/AdguardTeam/Scriptlets/issues/245#issuecomment-1346110102 In addition to implementing the style properties, we should also automatically convert the uBO-style selectors. I.e. `selector:remove-attr(attr)` --> `selector { remove-attr: attr...
Check here: https://github.com/ameshkov/web/pull/2
Here's how it looks like: https://uploads.adguard.com/up04_httpsgwarser.github.iowebwatchattr.html_75s16.png Can be reproduced here -- click buttons several times: https://gwarser.github.io/web/watchattr.html
See the discussion here: https://github.com/AdguardTeam/AdguardForWindows/issues/1367 What we should do: 1. Add a new "type" of extensions (userstyle) 2. Apply proper userstyle->userscript conversion internally (see the discussion)
The idea is to collect cosmetic rules and show them in the filtering log. Here's how it can be done: 1. We need to add some kind of a "cosmetic...
Read more about fenced frames here: https://developers.google.com/privacy-sandbox/relevance/fenced-frame They probably should be handled as `$subdocument`. You can take a look at them when going through this demo: https://protected-audience-demo.web.app/
Implement `GM_addValueChangeListener` (along with the `GM_removeValueChangeListener`) in the Userscript wrapper Related issue https://github.com/AdguardTeam/AdguardForWindows/issues/2986. The discussed script contains tips for the implementing method.
It should be possible to configure the following: * [ ] SOCKS5 * [ ] HTTPS over TLS (HTTPS) * [ ] Proxy authentication (for both SOCKS5, HTTPS and HTTP)...