1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-29 06:07:11 +02:00

Updated Static filter syntax (markdown)

gwarser 2018-06-21 15:42:22 +02:00
parent 76be6b7fd5
commit a7ec1ea1ed

@ -200,7 +200,7 @@ For example, [Adguard English filter](https://adguard.com/en/filters.html#englis
### HTML filters
uBO 1.14.23b3+ only.
Supported by uBO 1.14.23b3+ in Firefox 57+.
**READ VERY CAREFULLY:** HTML filtering acts on the **response data** (before browser parsing). Do not use the browser inspector from developer tools to create HTML filters. You **must** use `view-source:[URL of page]` instead to look at the **response data** and find out relevant information to create relevant HTML filters.
@ -213,8 +213,6 @@ The syntax is similar to that of cosmetic filters, except that you must prefix y
These HTML filters will cause the elements matching the selectors to be **removed from the streamed response data**, such that the browser will never know of their existence once it parses the modified response data. This makes it a powerful tool in uBO's arsenal.
Currently only supported on Firefox 57+.
With the introduction of HTML filtering, the `script:contains(...)` is now deprecated and internally converted into an equivalent `##^script:has-text(...)` HTML filter. The result is essentially the same: to prevent the execution of specific inline script tags in a main HTML document. See [_"Inline script tag filtering"_](https://github.com/gorhill/uBlock/wiki/Inline-script-tag-filtering) for further documentation.
### Scriptlet injection