1. || (하위 도메인 네임과 프로토콜)
예) ||example.com
- http://example.com (O)
- http://www.example.com (O)
- http://a.b.c.example.com (O)
- https://example.com (O)
- https://www.example.com (O)
- mms://example.com (O)
- http://example.com:8080 (X)
- http://www.example.com:8080 (X)
2. ^ (주소 구분자)
주소 구분자 ‘/’, ‘?’, ‘:’, ‘&’ 등을 필터링. ‘.’, ‘-’, ‘%’ 등 주소에 사용되는 문자는 필터링 하지 않음.
예1) http://example.com^
- http://example.com:8080 (O)
- http://example.com?q=3 (O)
- http://example.com.tw (X)
예2) ^foo.bar^
- http://example.com/foo.bar (O)
- http://example.com/foo.bar?q=3 (O)
- http://foo.bar/ (O)
- http://www.foo.bar/ (X)
- http://foo.bar.com/ (X)
- http://example.com/new_foo.bar (X)
- http://example.com/foo.bar2 (X)
Note: 그래서 1.1부터는 특정 도메인을 완전히 차단하기 위해서 ||example.com^ 을 사용한다. (메뉴에 추가)
사용자가 가장 원하던 기능을 구현한 게 아닌가 싶다. 그러나 필터 표현식이 복잡해지고 하위 호환성이 없어지는 게 단점.
3. ~ (도메인 제외)
항목 감춤 규칙에만 적용
예1) ~example.com##DIV(id=ad)
- http://example.com (X)
- http://www.example.com (X)
- example.com을 도메인으로 사용하지 않는 나머지 (O)
예2) example.com|~admin.example.com##DIV(id=ad)
- http://example.com (O)
- http://www.example.com (O)
- http://admin.example.com (X)
- http://local.admin.example.com (X)
* Adblock Plus: Writing Adblock Plus filters
* Adblock Plus 최신판: 1.1 .1 (2009-08-12)



최근 댓글