1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-03 02:37:21 +02:00

Implement uBO naming convention

q1800 2022-02-12 14:53:24 -06:00
parent 8173282e19
commit 8eb446d090

@ -6,7 +6,7 @@ There is nothing wrong with preferring ABP to uBlock Origin (uBO). There is howe
This is my reference answer to such claims.
uBlock Origin (uBO) is lighter on the browser because of many choices which were made regarding how the filtering engine is designed internally. A coarse enumeration of these choices are:
uBO is lighter on the browser because of many choices which were made regarding how the filtering engine is designed internally. A coarse enumeration of these choices are:
- lean in-memory filter representation
- plain string comparisons instead of regular expressions wherever possible
- a majority of network filters can be reduced to plain string comparison, and this is what uBO does internally for these filters, whereas Adblock Plus (ABP) converts _all_ network filters into regular expressions.