Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 title=Adblock Plus filters explained | 1 title=Adblock Plus filters explained |
2 | 2 |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 #content | 5 #content |
6 { | 6 { |
7 max-width: none; | 7 max-width: none; |
8 } | 8 } |
9 | 9 |
10 canvas | 10 canvas |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
798 <p>{{s139 The above filters are only examples of valid element hiding rules. Any <a href="http://www.w3.org/TR/css3-selectors/">CSS selector</a> supported by Fi refox can be used for element hiding.}}</p> | 798 <p>{{s139 The above filters are only examples of valid element hiding rules. Any <a href="http://www.w3.org/TR/css3-selectors/">CSS selector</a> supported by Fi refox can be used for element hiding.}}</p> |
799 | 799 |
800 <h3 id="elementhideemulation">{{ abp-pseudo-select-heading[heading] Extended CSS selectors (Adblock Plus specific) }}</h3> | 800 <h3 id="elementhideemulation">{{ abp-pseudo-select-heading[heading] Extended CSS selectors (Adblock Plus specific) }}</h3> |
801 | 801 |
802 <p>{{ abp-pseudo-select-1 In some situations standard CSS selectors are not suff icient, for those cases you can also use the following Adblock Plus specific pse udo-selectors: }}</p> | 802 <p>{{ abp-pseudo-select-1 In some situations standard CSS selectors are not suff icient, for those cases you can also use the following Adblock Plus specific pse udo-selectors: }}</p> |
803 | 803 |
804 <table> | 804 <table> |
805 <col class="selector"> | 805 <col class="selector"> |
806 <col class="selectorPurpose"> | 806 <col class="selectorPurpose"> |
807 <tr> | 807 <tr> |
808 <th>{{ pseudo-class-header Pseudo-class }}</th> | 808 <th>{{ pseudo-class-header[header] Pseudo-class }}</th> |
kzar
2017/07/27 10:25:38
I'm guessing Julian might like you to add [header]
hub
2017/07/28 20:04:36
Done.
juliandoucette
2017/07/28 20:07:48
Correct.
| |
809 <th>{{ s127 Purpose }}</th> | 809 <th>{{ s127 Purpose }}</th> |
810 </tr> | 810 </tr> |
811 <tr> | 811 <tr> |
812 <td><code>:-abp-properties()</code></td> | 812 <td><code>:-abp-properties()</code></td> |
813 <td>{{ abp-properties-purpose Select an element if its CSS style properties match what's specified }}</td> | 813 <td>{{ abp-properties-purpose Select an element if its CSS style properties match what's specified }}</td> |
814 </tr> | 814 </tr> |
815 <tr> | 815 <tr> |
816 <td><code>:-abp-has()</code></td> | 816 <td><code>:-abp-has()</code></td> |
817 <td>{{ abp-has-purpose Select an element if its content subtree match the se lector specified }}</td> | 817 <td>{{ abp-has-purpose Select an element if its content subtree match the se lector specified }}</td> |
818 </tr> | 818 </tr> |
(...skipping 27 matching lines...) Expand all Loading... | |
846 <tr> | 846 <tr> |
847 <td><code>example.com#?#div > img:-abp-properties(width:*px;height:250px; )</code></td> | 847 <td><code>example.com#?#div > img:-abp-properties(width:*px;height:250px; )</code></td> |
848 <td>{{ abp-properties-example1 By using a wildcard <code>*</code>, this filt er matches an <code>img</code> whose CSS style properties have a <code>width</co de> specified in pixels and a <code>height</code> of 250 pixels }}</td> | 848 <td>{{ abp-properties-example1 By using a wildcard <code>*</code>, this filt er matches an <code>img</code> whose CSS style properties have a <code>width</co de> specified in pixels and a <code>height</code> of 250 pixels }}</td> |
849 </tr> | 849 </tr> |
850 <tr> | 850 <tr> |
851 <td><code>example.com#?#div > img:-abp-properties(/width: 3[2-8]px;/)</co de></td> | 851 <td><code>example.com#?#div > img:-abp-properties(/width: 3[2-8]px;/)</co de></td> |
852 <td>{{ abp-properties-example2 By using a regular expression, this filter ma tches an <code>img</code> whose CSS style properties have a <code>width</code> b etween 32 and 38 pixels }}</td> | 852 <td>{{ abp-properties-example2 By using a regular expression, this filter ma tches an <code>img</code> whose CSS style properties have a <code>width</code> b etween 32 and 38 pixels }}</td> |
853 </tr> | 853 </tr> |
854 </table> | 854 </table> |
855 | 855 |
LEFT | RIGHT |