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

Updated Introduction to basic filtering syntax (markdown)

ItsProfesssional 2024-01-28 15:14:11 +05:30
parent e3fc98549f
commit 57ded7ee15

@ -51,11 +51,11 @@ Steps:
6. As soon as the site detects uBO and shows the anti-adblock popup, it will pause the detection code in the debugger.
7. Sometimes, the site uses libraries like jQuery, and the debugger may pause into such libraries instead of the main script. You have to use the call stack to traverse back to the main script.
7. Sometimes, the site uses libraries like jQuery, and the debugger may pause into such libraries instead of the main script. You have to use the debugger's `Call stack` section to traverse back to the main script (tip: if there's an "Expand rows" button, click on it to reveal more scripts in the call stack).
8. Use your browser's source viewer's formatter (usually a button like `{}`) to beautify the source code.
9. If it appears obfuscated, use a deobfuscator site.
9. If it appears obfuscated, use a deobfuscator site (keep in mind that some deobfuscators may not work with all scripts, even if they were obfuscated using the same obfuscator).
10. Then you can inspect the code surrounding it.