├── .gitattributes ├── .gitignore ├── LICENSE ├── POLICY.md ├── README.md ├── arabic.txt ├── base_filters ├── arabic.txt ├── bulgarian.txt ├── chinese.txt ├── czechandslovak.txt ├── dutch.txt ├── english.txt ├── french.txt ├── german.txt ├── hebrew.txt ├── indian.txt ├── indonesian.txt ├── italian.txt ├── korean.txt ├── latvian.txt ├── lithuanian.txt ├── polish.txt ├── portuguese.txt ├── romanian.txt ├── russian.txt ├── spanish.txt └── vietnamese.txt ├── bulgarian.txt ├── chinese.txt ├── czechandslovak.txt ├── dutch.txt ├── english.txt ├── french.txt ├── german.txt ├── hebrew.txt ├── indian.txt ├── indonesian.txt ├── italian.txt ├── korean.txt ├── latvian.txt ├── lithuanian.txt ├── polish.txt ├── portuguese.txt ├── romanian.txt ├── russian.txt ├── spanish.txt └── vietnamese.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt linguist-language=AdBlock linguist-detectable 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore files that possess a file-extension 2 | *?.* 3 | 4 | # Track text and markdown files 5 | !*.txt 6 | !*.md 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /POLICY.md: -------------------------------------------------------------------------------- 1 | # ABP mobile filter list policy 2 | 3 | **Purpose** 4 | 5 | * ABP mobile filters must remove [adverts](https://easylist.to/2011/07/11/the-definition-of-advert-and-link-exchange-policy.html), although it is acceptable for them to incidentally remove tracking. 6 | * Self-promotion should not be specifically removed by ABP mobile filters, although equally should not be whitelisted if it is blocked. 7 | * Adverts must be blocked regardless of the reasons for their presence or the purpose that the money raised ultimately serves. 8 | * Ads caused by malware or adware on your device will not be fixed. 9 | 10 | **Filter evaluation** 11 | 12 | * Evidence should be provided that filters need to be added to the subscription. 13 | * Specific filters should only added if a substantial amount of advertising is removed by its inclusion. 14 | * Consistently problematic filters should be removed from the filter list. 15 | 16 | **Syntax** 17 | 18 | * Domains specifically serving adverts should be blocked on all third-party websites. 19 | * Filters must be as efficient as possible. 20 | * Only element rules based on id or class should be applied to all domains, unless there are exceptional circumstances. 21 | * Whitelists should be specific enough to avoid protecting unwanted items. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### This filter list is a work in progress. We don’t recommend adding it to your ad blocker. Check back here in August when we hope to have a usable list available. 2 | 3 | # **ABP mobile filters** 4 | 5 | Adblock Plus (ABP) filter list to improve user experience on mobile. 6 | 7 | ## **Introduction** 8 | 9 | A long filter list can cause a bad user experience on some mobile devices. Additionally, some ads specifically target mobile devices, making some ads still visible to ad-blocking users. This is because most of the filters from traditional filter lists are made for desktop devices. Because of this, there's a need to make a filter list specifically designed for mobile devices. 10 | 11 | This filter list is based on EasyList (including [language supplemental filter lists](https://adblockplus.org/subscriptions#type_ads)) and maintained by ABP. It’s intended to be much smaller than EasyList, and to detect and block ads on mobile. Credits go to the EasyList authors ([https://easylist.to/](https://easylist.to/)) and its community! 12 | 13 | ## **Authors** 14 | 15 | * [monzta](https://github.com/monzta) 16 | * [sashachu](https://github.com/sashachu) 17 | * [mile-ne](https://github.com/mile-ne) 18 | * [wizmak](https://github.com/wizmak) 19 | * [arsykan](https://github.com/arsykan) 20 | * [KrisGalcz](https://github.com/KrisGalcz) 21 | 22 | 23 | [View the full list of contributors](https://github.com/abp-filters/abp-filters-mobile/graphs/contributors). 24 | 25 | ## **Policy** 26 | 27 | [View our policy.](https://github.com/abp-filters/abp-filters-mobile/blob/master/POLICY.md) 28 | 29 | ## **License** 30 | 31 | This project is free, open source, and licensed under GPLv3. See [LICENSE](https://github.com/abp-filters/abp-filters-mobile/blob/master/LICENSE) for details. 32 | 33 | ## **Contributing** 34 | 35 | At the moment, we don’t support contributions since the filter list isn’t ready to be used yet. We’ll announce when we’re ready for contributions from the community. 36 | -------------------------------------------------------------------------------- /arabic.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | ||aflamsex.xxx/*/default_tube2018/*/logo.png|$image,domain=xnxxx.cc 15 | 16 | ! site-specific popup blocking rules 17 | 18 | ! site-specific element hiding rules 19 | 20 | ! third-party blocking rules 21 | 22 | ! third-party popup blocking rules 23 | 24 | ! blocking exception rules 25 | 26 | ! dimension blocking exception rules 27 | 28 | ! element hiding exception rules 29 | 30 | ! popup blocking exception rules 31 | -------------------------------------------------------------------------------- /base_filters/arabic.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||postquare.com^$third-party 3 | 4 | ! adserver popup rules 5 | 6 | ! generic blocking rules 7 | /projectagora.min.js 8 | 9 | ! generic dimension blocking rules 10 | 11 | ! generic popup blocking rules 12 | 13 | ! generic element hiding rules 14 | ##div[id^="POSTQUARE_WIDGET"] 15 | 16 | ! site-specific blocking rules 17 | |http://$script,stylesheet,third-party,xmlhttprequest,domain=cimaclub.com 18 | |https://$script,stylesheet,third-party,domain=33sk.tv|3sk.co|3sk.io 19 | |https://$script,stylesheet,third-party,xmlhttprequest,domain=cimaclub.com 20 | ||panet.co.il/online/images/links_blocks/ 21 | 22 | ! site-specific popup blocking rules 23 | 24 | ! site-specific element hiding rules 25 | 26 | ! third-party blocking rules 27 | 28 | ! third-party popup blocking rules 29 | 30 | ! blocking exception rules 31 | 32 | ! dimension blocking exception rules 33 | 34 | ! element hiding exception rules 35 | 36 | ! popup blocking exception rules 37 | -------------------------------------------------------------------------------- /base_filters/bulgarian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | ||bg.search.etargetnet.com/generic/ 15 | 16 | ! site-specific popup blocking rules 17 | 18 | ! site-specific element hiding rules 19 | 20 | ! third-party blocking rules 21 | 22 | ! third-party popup blocking rules 23 | 24 | ! blocking exception rules 25 | 26 | ! dimension blocking exception rules 27 | 28 | ! element hiding exception rules 29 | 30 | ! popup blocking exception rules 31 | -------------------------------------------------------------------------------- /base_filters/chinese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||qchannel03.cn^$third-party 3 | 4 | ! adserver popup rules 5 | 6 | ! generic blocking rules 7 | 8 | ! generic dimension blocking rules 9 | 10 | ! generic popup blocking rules 11 | 12 | ! generic element hiding rules 13 | 14 | ! site-specific blocking rules 15 | ||163.com*/special/*_ad_ 16 | ||163.com/wap/special/article_cooper_piapia/ 17 | ||adv-sv-show.focus.cn^ 18 | ||as1.m.hao123.com^ 19 | ||atm.youku.com^ 20 | ||g.163.com/*&affiliate= 21 | ||ifeng.com/client_share_bottom_ 22 | ||ifengimg.com/p/ax_ 23 | ||iqiyi.com/show2?e= 24 | ||news.ssp.qq.com/app 25 | ||nex.163.com/q? 26 | ||qcvf.ifeng.com^ 27 | ||s.go.sohu.com^*/?callback= 28 | ||sina.cn/cm/sinaads_ 29 | ||sina.cn^*/impress? 30 | ||static-ssp.yidianzixun.com^ 31 | ||ztyumn.ifeng.com^ 32 | 33 | ! site-specific popup blocking rules 34 | 35 | ! site-specific element hiding rules 36 | 163.com##.a_topad 37 | baidu.com##.c-container.ec-container 38 | baidu.com##.ec_wise_ad 39 | baidu.com#?#.ec_wise_ad 40 | eol.cn,hao123.com##.popup 41 | hao123.com##.cn_banner 42 | hao123.com##.cn_tips 43 | ifeng.com##div[class^="ad_box"] 44 | iqiyi.com##div[id^="100000"] 45 | sina.cn##[href*="://sax"] 46 | ~g.ifeng.com,ifeng.com##a[href*="/g.ifeng."] 47 | 48 | ! third-party blocking rules 49 | 50 | ! third-party popup blocking rules 51 | 52 | ! blocking exception rules 53 | 54 | ! dimension blocking exception rules 55 | 56 | ! element hiding exception rules 57 | 58 | ! popup blocking exception rules 59 | -------------------------------------------------------------------------------- /base_filters/czechandslovak.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||idvert.cz^$third-party 3 | ||imedia.cz^$third-party 4 | ||imr.sk^$third-party 5 | ||performax.cz^ 6 | ||r.i0.cz^$third-party 7 | ||stat.novinky.cz^ 8 | ||trackad.cz^$third-party 9 | 10 | ! adserver popup rules 11 | 12 | ! generic blocking rules 13 | ||presentation.lmc.cz/aliance/ 14 | 15 | ! generic dimension blocking rules 16 | 17 | ! generic popup blocking rules 18 | 19 | ! generic element hiding rules 20 | ###adRectangle 21 | ###promo-box 22 | ###reklamy 23 | ###sklik 24 | ##.sklik 25 | ##[id^="sklikReklama"] 26 | 27 | ! site-specific blocking rules 28 | ||1gr.cz/js/uni/oldback/logo.png$script,domain=idnes.cz 29 | ||a.blesk.cz^ 30 | ||a.csfd.cz^ 31 | ||a.denik.cz^ 32 | ||stat.sport.cz^ 33 | ||stat.super.cz^ 34 | 35 | ! site-specific popup blocking rules 36 | 37 | ! site-specific element hiding rules 38 | csfd.cz#?#.ct-related:-abp-contains(/^\s+Reklama/) 39 | csfd.cz#?#.widget-group-2 li:-abp-has(div.ad-pmg) 40 | heureka.cz,heureka.sk##div[class*="__banner"] 41 | idnes.cz##[class*="r-main"] 42 | idnes.cz##div[id^="hyper"] 43 | super.cz##div.ad 44 | 45 | ! third-party blocking rules 46 | ||campaigns.caroda.io^$third-party 47 | 48 | ! third-party popup blocking rules 49 | 50 | ! blocking exception rules 51 | @@/moje-inzeraty/ 52 | @@||static.cz.prg.cmestatic.com/static/cz/shared/js/advert.js$domain=nova.cz 53 | 54 | ! dimension blocking exception rules 55 | 56 | ! element hiding exception rules 57 | 58 | ! popup blocking exception rules 59 | -------------------------------------------------------------------------------- /base_filters/dutch.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | marktplaats.nl###top-banner-wrapper div[id^="banner-"] 19 | marktplaats.nl##.search-result.bottom-listing 20 | nos.nl##.ster-banner 21 | nu.nl##a[href*="/advertorial-"] 22 | 23 | ! third-party blocking rules 24 | 25 | ! third-party popup blocking rules 26 | 27 | ! blocking exception rules 28 | 29 | ! dimension blocking exception rules 30 | 31 | ! element hiding exception rules 32 | 33 | ! popup blocking exception rules 34 | -------------------------------------------------------------------------------- /base_filters/french.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||dmxleo.dailymotion.com^ 3 | ||dunfermlinemulkeytown.com^ 4 | ||franecki.net^$third-party 5 | ||goutee.top^$third-party 6 | ||mediaathay.org.uk^$third-party 7 | ||nr-data.net^$third-party 8 | ||nuggad.net^$third-party 9 | ||projectagoratech.com^$third-party 10 | ||pubstack.io^$third-party 11 | ||seedtag.com^$third-party 12 | ||videostep.com^$third-party 13 | ||zebestof.com^$third-party 14 | 15 | ! adserver popup rules 16 | 17 | ! generic blocking rules 18 | .fr/ads/ 19 | .gif?partner= 20 | /adscores/* 21 | /autopromo.*/async| 22 | /detect-acceptable/* 23 | /get_links_*&zone= 24 | 25 | ! generic dimension blocking rules 26 | 27 | ! generic popup blocking rules 28 | 29 | ! generic element hiding rules 30 | ###pub_banniere_basse 31 | ###pub_banniere_haute 32 | ###pub_interstitiel 33 | ##.ads-core-placer 34 | ##.containerAds 35 | ##.fig-ad 36 | ##.fig-ad-pave 37 | ##.ytp-paid-content-overlay 38 | ##a[href^="https://ad.apps.fm/"] 39 | 40 | ! site-specific blocking rules 41 | /^((?!(^https?):\/\/(([0-9a-z\-\.]+)\.maps\.cit\.api\.here\.com|([a-z\-]+)\.woopic\.com|api\.usabilla\.com|cps\.purpledrm\.com|embed\.playbuzz\.com|mcd\.playbuzz\.com|services\.arcgisonline\.com|static\.arcgis\.com|vodew-mss2\.cdn2\.orange-business\.com|www\.ultimedia\.com)\/).)*$/$third-party,xmlhttprequest,domain=orange.fr 42 | /autopromo.$domain=750g.com|alibabuy.com|allocine.fr|cap-cine.fr|chartsinfrance.net|cotecine.fr|easyvols.fr|easyvoyage.com|get-the-look.fr|jeuxactu.com|lestream.fr|millenium.org|musiquemag.com|ozap.com|purebreak.com|purepeople.com|puretrend.com|shopoon.fr|terrafemina.com 43 | ||files.meteofrance.com/habillage/ 44 | 45 | ! site-specific popup blocking rules 46 | 47 | ! site-specific element hiding rules 48 | ados.fr,adsptp.com,afrik-cuisine.com,afrik-foot.com,afrik.com,afrikeco.com,agevillage.com,agoravox.fr,agoravox.tv,annuaire-streaming.com,bhmag.fr,cciaf.org,centerblog.net,cio-online.com,commentreparer.com,construiresamaison.com,cuisineactuelle.fr,dictionnaire-synonymes.com,docteurclic.com,elbotola.com,elheddaf.com,elitepresse.com,ennaharonline.com,europages.ma,fan-de-cinema.com,femmeactuelle.fr,foot01.com,forumsims3.com,franceinfo.fr,franceinter.fr,ici.tou.tv,igen.fr,inovaovao.com,internetparsatellite.net,jeux-mmorpg.com,ktotv.com,lacapitale.be,lacentrale.fr,ladepeche.fr,lameuse.be,lanouvellegazette.be,laprovince.be,larousse.fr,lefigaro.fr,lemonde.fr,lesdebiles.com,lesechos.fr,lesoir.be,lexpress.fr,logicielmac.com,macg.co,mapiaule.com,maximiles.com,meilleurtaux.com,menara.ma,mini-games.fr,montelimar-news.fr,nintendo-master.com,nordeclair.be,orange.fr,orange.mu,ouest-france.fr,over-blog.com,programme.tv,radio-monaco.com,radioclassique.fr,remede.org,sfr.fr,skirandomag.com,slate.fr,sofoot.com,soonnight.com,telemb.be,telequebec.tv,tf1.fr,tsa-algerie.com,turbo.fr,watchgeneration.fr,yabiladi.com,yatahonga.com,zupimages.net##.pub 49 | credit-agricole.fr##a[href^="https://www.onatousuncotefoot.fr/"] 50 | lefigaro.fr##.fig-adgps 51 | lefigaro.fr##.fig-promo-jardin 52 | lefigaro.fr##a[href^="http://cplussur.lefigaro.fr/"] 53 | lefigaro.fr##a[href^="http://lefigaro.explorimmo.com/resultat/annonces.html?"] 54 | lefigaro.fr##a[href^="http://www.ticketac.com/?utm_source="] 55 | lefigaro.fr##a[href^="https://go.babbel.com/"] 56 | lemonde.fr##div[data-partner="barnebys"] 57 | lemonde.fr#?#.area--ops:-abp-has(p:-abp-contains(Contenus partenaires)) 58 | meteofrance.com##.mod-publiinfos 59 | meteofrance.com##[href*=".xiti.com"] > img 60 | ouest-france.fr##.partenaire-externe 61 | 62 | ! third-party blocking rules 63 | ||facebook.net^*/fbevents.js$third-party 64 | 65 | ! third-party popup blocking rules 66 | 67 | ! blocking exception rules 68 | @@||a.f1g.fr/build/2/adsense.js$script 69 | 70 | ! dimension blocking exception rules 71 | 72 | ! element hiding exception rules 73 | 20minutes.fr#@#.onf-ad 74 | 75 | ! popup blocking exception rules 76 | -------------------------------------------------------------------------------- /base_filters/german.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||ad4mat.de^$third-party 3 | ||nativendo.de^$third-party 4 | ||twiago.com^$third-party 5 | 6 | ! adserver popup rules 7 | 8 | ! generic blocking rules 9 | .de/ads/$~xmlhttprequest 10 | /werbebanner- 11 | 12 | ! generic dimension blocking rules 13 | 14 | ! generic popup blocking rules 15 | 16 | ! generic element hiding rules 17 | ###text-ads-mitte 18 | ##.werbung 19 | 20 | ! site-specific blocking rules 21 | ||adnxs.com^$domain=autobild.de|widgets.outbrain.com 22 | ||chefkoch-cdn.de^*/partnerlogos/ 23 | ||doubleclick.net^$third-party,domain=augsburger-allgemeine.de|autobild.de|bild.de|buffed.de|bundesliga.de|cnet.de|computerbild.de|dashausanubis.de|de.msn.com|dooloop.tv|eyep.tv|filmjunkies.de|flashgames.de|focus.de|gameone.de|gamepro.de|gamesaktuell.de|gamestar.de|gameswelt.at|gameswelt.ch|gameswelt.de|gameswelt.tv|gamezone.de|gzsz.rtl.de|hatenight.com|homerj.de|icarly.de|kino.de|kochbar.de|laola1.tv|lustich.de|motorvision.de|myvideo.at|myvideo.ch|myvideo.de|n-tv.de|onlinewelten.com|pcgames.de|pcgameshardware.de|pcwelt.de|radio.de|ran.de|rtlregional.de|southpark.de|spiegel.tv|spiele-zone.de|spongebob.de|sport.de|spox.com|spreeradio.de|t-online.de|teleboerse.de|the-hills.tv|trailerseite.de|tvmovie.de|video.de|videogameszone.de|vip.de|vodafonelive.de|vox.de|welt.de|wetter.de|wetterschnecken.de|wikifit.de|www.rtl2.de|zdnet.de 24 | ||kinoprogramm.bild.de^ 25 | 26 | ! site-specific popup blocking rules 27 | 28 | ! site-specific element hiding rules 29 | 1und1.de,gmx.net,web.de##ela-bing-card-list[c-type="'ad'"] 30 | aachener-nachrichten.de,abendblatt.de,ak-kurier.de,alle-immobilien.ch,azonline.de,bazonline.ch,bernerzeitung.ch,bildderfrau.de,billig-flieger-vergleich.de,bos-fahrzeuge.info,computerbase.de,crn.de,derbund.ch,derlacher.de,echo-online.de,epochtimes.de,erf.de,fail.to,fettspielen.de,funnypizza.de,glamour.de,gmx.net,gq-magazin.de,hardwareclips.com,holidaycheck.de,inside-handy.de,ircgalerie.net,kalenderwoche.net,kino24.to,klassikradio.de,kronehit.at,macwelt.de,metager.de,modhoster.de,newscomm.de,nordbayerischer-kurier.de,oberhessische-zeitung.de,pcwelt.de,pfaffenhofen-today.de,phonostar.de,podcast.de,prisma.de,radiokoeln.de,raidrush.org,rhein-neckar-loewen.de,sachsen-fernsehen.de,shopbetreiber-blog.de,spektrum.de,sueddeutsche.de,suite101.de,tagesanzeiger.ch,wallstreet-online.de,web.de,wissen.de,wn.de,yellingnews.com,zeit.de##.ad 31 | amazon.de###heroQuickPromo_feature_div 32 | annos.de,chefkoch.de,dasoertliche.de,dastelefonbuch.de###banner-top 33 | bild.de##a[href*=".smartadserver.com/"] 34 | bild.de##a[href*="/partner/"] 35 | chefkoch.de###partnerlogos-bottom 36 | chefkoch.de##.s24_widget 37 | chip.de##.List > li > .copy-sm > .secondary[rel="nofollow"] 38 | chip.de##a[href^="https://www.amazon.de/"][href*="&tag="] 39 | computerbild.de,erdbeerlounge.de,fitbook.de,giga.de,metal-hammer.de,musikexpress.de,noizz.de,rollingstone.de,spieletipps.de,sportbild.bild.de,stylebook.de,techbook.de,transfermarkt.de,travelbook.de,welt.de##.trc_related_container div[data-item-syndicated="true"] 40 | ebay.de##.vi-lb-placeholder 41 | ebay.de#?#.s-item:-abp-has(span:-abp-contains(ANZEIGE)) 42 | gmx.net,home.1und1.de,rtl-west.de,rtlnord.de,web.de##.medrec 43 | immobilienscout24.de##.banner-top-placeholder 44 | mobile.de,viva.tv##.adv 45 | suche.1und1.de,suche.gmx.net,suche.web.de##COMPONENTS-SHOPPING-ONEBOX-LIST.l-display-block 46 | t-online.de###ma_ar 47 | t-online.de###ma_ar_2 48 | t-online.de###ma_mrec 49 | t-online.de##.Tadc 50 | t-online.de##.Tgbox--anz 51 | t-online.de##a[href^="https://count.shopping.t-online.de/RE?ID="] 52 | t-online.de##div[data-dy*="Partner:"] 53 | t-online.de,trax.de##a[href^="http://count.shopping.t-online.de/RE?ID="] 54 | 55 | ! third-party blocking rules 56 | ||ad.71i.de^ 57 | 58 | ! third-party popup blocking rules 59 | 60 | ! blocking exception rules 61 | @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=chip.de|event.mivitec.net|musikexpress.de|radio.de|rollingstone.de|welect.de 62 | 63 | ! dimension blocking exception rules 64 | 65 | ! element hiding exception rules 66 | @@||computerbild.de^$generichide 67 | @@||fitbook.de^$generichide 68 | @@||focus.de^$generichide 69 | @@||metal-hammer.de^$generichide 70 | @@||noizz.de^$generichide 71 | @@||stylebook.de^$generichide 72 | @@||techbook.de^$generichide 73 | @@||travelbook.de^$generichide 74 | @@||welt.de^$generichide 75 | 1und1.de,gmx.at,gmx.net,typischich.at,web.de#@#.advertorial 76 | computerbild.de,wieistmeineip.at,wieistmeineip.ch,wieistmeineip.de#@#.trc-content-sponsored 77 | computerbild.de,wieistmeineip.at,wieistmeineip.ch,wieistmeineip.de#@#.trc_related_container div[data-item-syndicated="true"] 78 | rtl.de#@#.adslot 79 | wieistmeineip.at,wieistmeineip.ch,wieistmeineip.de#@#.trc_rbox .syndicatedItem 80 | wieistmeineip.at,wieistmeineip.ch,wieistmeineip.de#@#.trc_rbox_border_elm .syndicatedItem 81 | wieistmeineip.at,wieistmeineip.ch,wieistmeineip.de#@#.trc_rbox_div .syndicatedItem 82 | 83 | ! popup blocking exception rules 84 | -------------------------------------------------------------------------------- /base_filters/hebrew.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | ||resources.fortvision.com/staticfiles 7 | 8 | ! generic dimension blocking rules 9 | 10 | ! generic popup blocking rules 11 | 12 | ! generic element hiding rules 13 | 14 | ! site-specific blocking rules 15 | ||activetrail.com^$third-party,domain=mako.co.il 16 | ||browsiprod.com^$script,xmlhttprequest,domain=walla.co.il 17 | ||browsiprod.com^$script,xmlhttprequest,domain=ynet.co.il 18 | ||firebaseio.com^$third-party,domain=walla.co.il 19 | ||images.haarets.co.il/image/upload/w_227,h_112,c_crop/q_auto,h_98,w_227,c_fill,f_auto/fl_lossy.any_format.preserve_transparency.progressive:none/v1548162519/1.6867261.518501105.jpg 20 | ||walla.co.il^$csp=script-src 'self' * blob: data: 'unsafe-inline',domain=animals.walla.co.il|b.walla.co.il|buzzit.walla.co.il|cars.walla.co.il|celebs.walla.co.il|e.walla.co.il|elections.walla.co.il|fashion.walla.co.il|finance.walla.co.il|food.walla.co.il|healthy.walla.co.il|home.walla.co.il|judaism.walla.co.il|mag.walla.co.il|movies.walla.co.il|nadlan.walla.co.il|news.walla.co.il|sports.walla.co.il|tags.walla.co.il|tech.walla.co.il|travel.walla.co.il|tv-guide.walla.co.il|viva.walla.co.il|vod.walla.co.il|weather.walla.co.il|www.walla.co.il 21 | ||walla.yad2.co.il/*banner$subdocument,domain=walla.co.il 22 | 23 | ! site-specific popup blocking rules 24 | 25 | ! site-specific element hiding rules 26 | globes.co.il##.sekindo 27 | haaretz.co.il,mouse.co.il,themarker.com##a[href*="://rmkz.themarker.com/"] 28 | haaretz.co.il,themarker.com##a[href*="gampad/clk"] 29 | haaretz.co.il,themarker.com##div[class*="banner"] 30 | infomed.co.il,mako.co.il,pcmagazine.co.il,rest.co.il##.ad 31 | m.sport5.co.il##.ad 32 | mako.co.il##[href^="https://adclick.g.doubleclick.net/"] 33 | walla.co.il##.ads-spaces-shdera-hp 34 | walla.co.il##.no-title.shatapim.sequence 35 | walla.co.il##.vertical-232.tld.type-2.vertical-editable.common-hp-articles.sequence 36 | walla.co.il##div[class^="ads-spaces"] 37 | zap.co.il##.BannerBox 38 | 39 | ! third-party blocking rules 40 | ||ads.one.co.il^ 41 | 42 | ! third-party popup blocking rules 43 | 44 | ! blocking exception rules 45 | @@/dfp/*$script,xmlhttprequest,domain=haaretz.co.il|mouse.co.il|themarker.com 46 | @@||mako.co.il/js/dfp/dfp.js$script,domain=mako.co.il 47 | @@||one.co.il^$xmlhttprequest 48 | @@||pubads.g.doubleclick.net/gampad/adx?iu=$domain=mako.co.il 49 | @@||rcs.mako.co.il/js/ads.js$script,xmlhttprequest 50 | @@||sport5.co.il^*/dfp.$script,~third-party 51 | 52 | ! dimension blocking exception rules 53 | 54 | ! element hiding exception rules 55 | @@||haaretz.co.il^$generichide 56 | @@||sport5.co.il^$generichide 57 | haaretz.co.il#@#div[class*="Banner"] 58 | one.co.il#@#a[href^="http://xads.zedo.com/"] 59 | 60 | ! popup blocking exception rules 61 | -------------------------------------------------------------------------------- /base_filters/indian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | 19 | ! third-party blocking rules 20 | 21 | ! third-party popup blocking rules 22 | 23 | ! blocking exception rules 24 | 25 | ! dimension blocking exception rules 26 | 27 | ! element hiding exception rules 28 | 29 | ! popup blocking exception rules 30 | -------------------------------------------------------------------------------- /base_filters/indonesian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||accesstrade.co.id^$third-party 3 | ||advertnative.com^$third-party 4 | 5 | ! adserver popup rules 6 | 7 | ! generic blocking rules 8 | 9 | ! generic dimension blocking rules 10 | 11 | ! generic popup blocking rules 12 | 13 | ! generic element hiding rules 14 | ##.ads__side 15 | 16 | ! site-specific blocking rules 17 | ||adsimg.kompas.com^$domain=kompas.com 18 | 19 | ! site-specific popup blocking rules 20 | 21 | ! site-specific element hiding rules 22 | grid.id##.clearfix.ads__horizontal 23 | 24 | ! third-party blocking rules 25 | 26 | ! third-party popup blocking rules 27 | 28 | ! blocking exception rules 29 | 30 | ! dimension blocking exception rules 31 | 32 | ! element hiding exception rules 33 | 34 | ! popup blocking exception rules 35 | -------------------------------------------------------------------------------- /base_filters/italian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | .it/ads. 7 | .it/ads/ 8 | 9 | ! generic dimension blocking rules 10 | 11 | ! generic popup blocking rules 12 | 13 | ! generic element hiding rules 14 | ###adv_nativ_sopracartina 15 | ###adv_outbrain_AR_1_sottocartina 16 | ###adv_sotto_navigatore 17 | 18 | ! site-specific blocking rules 19 | ||3bmeteo.com^*/promo/ 20 | ||ansa.it^*/banner_ 21 | ||oasjs.kataweb.it^ 22 | 23 | ! site-specific popup blocking rules 24 | 25 | ! site-specific element hiding rules 26 | 3bmeteo.com###sole24_banner 27 | 3bmeteo.com##.gpt_top 28 | advertiser.it,agi.it,agichina24.it,airdave.it,alessandrianews.it,america24.com,casateonline.it,chiamarsibomber.com,corrieredelgiorno.com,corrieremercantile.it,cronachemaceratesi.it,cuneocronaca.it,dagospia.com,diretta.it,euroregionalpmed.eu,finanzaonline.com,foodweb.it,gazzettadiavellino.it,gazzettadinapoli.it,gazzettadisalerno.it,gazzettahockey.it,giochidicalcio.com,globalist.it,gossip.it,greenstyle.it,html.it,ilcambiamento.it,ilfriuli.it,ilgarantista.it,ilgiornale.it,insegreto.it,ivid.it,lindro.it,lipari.biz,macitynet.it,merateonline.it,meteoweb.eu,oggitreviso.it,orangedropdesign.com,orizzontescuola.it,orvietosi.it,pmi.it,programmitv.com,projectcars.it,pubblicitaitalia.it,quattroruote.it,quibrianza.it,quotidianocanavese.it,r101.it,rcdc.it,rockit.it,secoloditalia.it,softonic.it,strettoweb.com,teatronaturale.it,telejato.it,telenord.it,tenews.it,tg24.info,ticinolibero.ch,traniviva.it,ultimouomo.com,varesenews.it,vocenuova.tv##.banner 29 | bordighera.net,corriere.it,italianhack.org,mailexpress.it,spaziogames.it###ads 30 | diretta.it###box-over-content-a 31 | gazzetta.it##a[href*="/codici-sconto/"] 32 | ilmessaggero.it,leggo.it##.strip-omnia 33 | 34 | ! third-party blocking rules 35 | ||immobiliare.it/widget/$third-party 36 | 37 | ! third-party popup blocking rules 38 | 39 | ! blocking exception rules 40 | @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=agi.it|auto.it|corrieredellosport.it|guerinsportivo.it|inmoto.it|liveksoft.tv|movieplayer.it|multiplayer.it|radiofreccia.it|radiozeta.it|tuttosport.com|video.repubblica.it|vvvvid.it 41 | @@||oasjs.kataweb.it/adsetup.$domain=video.huffingtonpost.it|video.repubblica.it 42 | 43 | ! dimension blocking exception rules 44 | 45 | ! element hiding exception rules 46 | 47 | ! popup blocking exception rules 48 | -------------------------------------------------------------------------------- /base_filters/korean.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | m.yna.co.kr##div[id^="mobonDivBanner"] 19 | m.yna.co.kr##section[class^="section-ad"] 20 | 21 | ! third-party blocking rules 22 | ||api.popin.cc/$script,third-party 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /base_filters/latvian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||adbox.lv^$third-party 3 | 4 | ! adserver popup rules 5 | 6 | ! generic blocking rules 7 | 8 | ! generic dimension blocking rules 9 | 10 | ! generic popup blocking rules 11 | 12 | ! generic element hiding rules 13 | 14 | ! site-specific blocking rules 15 | ||b.itvnet.lv^ 16 | ||reklama.lv/promotion/ 17 | ||tvnet.lv/export_news/$third-party 18 | 19 | ! site-specific popup blocking rules 20 | 21 | ! site-specific element hiding rules 22 | delfi.lv##.city24-topBlock-extraLine 23 | delfi.lv##.city24-topBlock-wrapper 24 | delfi.lv##.d-sm-block 25 | jauns.lv##.ad-dfp 26 | jauns.lv##.meta-info__subscribe 27 | jauns.lv##.shop-list 28 | lsm.lv##.adbox 29 | salidzini.lv###AM_bottom 30 | salidzini.lv###AM_giga 31 | salidzini.lv###AM_mobile_1 32 | salidzini.lv###AM_scroll_row 33 | salidzini.lv###AM_tower_div 34 | salidzini.lv##[id^="media_place"] 35 | 36 | ! third-party blocking rules 37 | ||city24.lv/ibox/$third-party 38 | 39 | ! third-party popup blocking rules 40 | 41 | ! blocking exception rules 42 | @@||b.adbox.lv/bxlib/js/loader.js?$script,domain=lsm.lv 43 | @@||ltv.lsm.lv/scripts/ads.js$script 44 | 45 | ! dimension blocking exception rules 46 | 47 | ! element hiding exception rules 48 | 49 | ! popup blocking exception rules 50 | -------------------------------------------------------------------------------- /base_filters/lithuanian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | ||skelbiu-static.dgn.lt/static/images/banner 15 | ||tv3.lt/Uploads/image/pwr.jpg 16 | 17 | ! site-specific popup blocking rules 18 | 19 | ! site-specific element hiding rules 20 | 15min.lt##.content-ad.ads-cnt 21 | 15min.lt##.widget.ads 22 | 15min.lt##a[href^="https://bit.ly"] 23 | 15min.lt##div[id*="google_ads_iframe_"] 24 | 15min.lt##iframe[id*="google_ads_iframe_"] 25 | autogidas.lt##a[href*="banner"] 26 | bigbenas.com,cs-servers.lt,delfi.lt,racas.lt,rinkaplius.lt,strazdaneles.lt,pasikeisk.lt,priekavos.lt,1588.lt,sodobaldai.lt,ekopasaulis.com,ekopirk.lt,zaislaivaikams.lt,kcci.lt,mystore.lt##.banner 27 | delfi.lt##.revolut-juosta 28 | skelbiu.lt###banner-three-in-one-between-items 29 | skelbiu.lt###list-middle-zone 30 | skelbiu.lt###top-item-zone 31 | skelbiu.lt##iframe[src*="skelbiu-static.dgn.lt/static/5/banner/"] 32 | tv3.lt##[onclick="ga('send', 'event', 'Anonsai', 'Click', 'Svarbiausia blokelio paspaudimas');"] * 33 | vz.lt##.cvWrSidebar 34 | 35 | ! third-party blocking rules 36 | 37 | ! third-party popup blocking rules 38 | 39 | ! blocking exception rules 40 | 41 | ! dimension blocking exception rules 42 | @@||15min.lt/*ads 43 | @@||am15.net$domain=filmux.org 44 | @@||entitlements.jwplayer.com/*.json 45 | @@||googlesyndication.com/pagead/$third-party 46 | @@||lib.lrytas.lt/js/cx/EAS_fif.js 47 | @@||lrytas.lt/eas 48 | @@||sascdn.com^$third-party,domain=vz.lt 49 | @@||securepubads.g.doubleclick.net^$domain=15min.lt 50 | 51 | ! element hiding exception rules 52 | @@||15min.lt^$generichide 53 | @@||delfi.lt^$generichide 54 | 55 | ! popup blocking exception rules 56 | -------------------------------------------------------------------------------- /base_filters/polish.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||adsearch.pl^$third-party 3 | ||hub.com.pl^$third-party 4 | 5 | ! adserver popup rules 6 | 7 | ! generic blocking rules 8 | 9 | ! generic dimension blocking rules 10 | 11 | ! generic popup blocking rules 12 | 13 | ! generic element hiding rules 14 | 15 | ! site-specific blocking rules 16 | ||dynacrems.wp.pl^*=dynacrems-adv- 17 | ||rek.www.wp.pl^ 18 | 19 | ! site-specific popup blocking rules 20 | 21 | ! site-specific element hiding rules 22 | abczdrowie.pl,autokult.pl,echirurgia.pl,fotoblogia.pl,kafeteria.pl,kardiolo.pl,komorkomania.pl,luxlux.pl,medycyna24.pl,money.pl,nerwica.com,open.fm,pinger.pl,pogodnie.pl,pudelek.pl,pudelek.tv,pudelekx.pl,pytamy.pl,samosia.pl,smog.pl,snobka.pl,wp.pl#?#div:-abp-has(> div:-abp-properties(margin-bottom: 2px)) 23 | abczdrowie.pl,autokult.pl,echirurgia.pl,fotoblogia.pl,kafeteria.pl,kardiolo.pl,komorkomania.pl,luxlux.pl,medycyna24.pl,money.pl,nerwica.com,pinger.pl,pogodnie.pl,pudelek.pl,pudelek.tv,pudelekx.pl,pytamy.pl,samosia.pl,smog.pl,snobka.pl##div[style$="display: block;"]>*:not(.modal__body):not(.content):not(.submenu) 24 | abczdrowie.pl,autokult.pl,snobka.pl,o2.pl,kardiolo.pl,jejswiat.pl,pudelek.tv,money.pl,komorkomania.pl,fotoblogia.pl,pudelek.pl,pudelekx.pl,medycyna24.pl,echirurgia.pl,kafeteria.pl,kciuk.pl,kowbojki.pl,luxlux.pl,nerwica.com,open.fm,planowo.pl,pogodnie.pl,pytamy.pl,smog.pl,pinger.pl,wp.pl,samosia.pl,demoty.pl#?#DIV:-abp-properties(position: relative;) > DIV > IFRAME 25 | abczdrowie.pl,autokult.pl,snobka.pl,o2.pl,kardiolo.pl,jejswiat.pl,pudelek.tv,money.pl,komorkomania.pl,fotoblogia.pl,pudelek.pl,pudelekx.pl,medycyna24.pl,echirurgia.pl,kafeteria.pl,kciuk.pl,kowbojki.pl,luxlux.pl,nerwica.com,open.fm,planowo.pl,pogodnie.pl,pytamy.pl,smog.pl,pinger.pl,wp.pl,samosia.pl,demoty.pl#?#IMG:-abp-properties(position: relative;) 26 | filmweb.pl###mainSkyBanner-pl_PL 27 | filmweb.pl##.ad__billboard-below-header 28 | filmweb.pl##.ws__wrapper 29 | filmweb.pl##div[rel="billboard"] 30 | pomponik.pl#?#LI:-abp-has(> DIV > DIV > A:-abp-contains(SPONSOROWANE)) 31 | wp.pl##.gwcOrs 32 | 33 | ! third-party blocking rules 34 | 35 | ! third-party popup blocking rules 36 | 37 | ! blocking exception rules 38 | 39 | ! dimension blocking exception rules 40 | 41 | ! element hiding exception rules 42 | 43 | ! popup blocking exception rules 44 | -------------------------------------------------------------------------------- /base_filters/portuguese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | clicrbs.com.br,otvfoco.com.br##.ob-p 13 | olx.com.br###module_olx_shopping 14 | olx.com.br##.module_advertising 15 | terra.com.br,uol.com.br##.advertising 16 | 17 | ! site-specific blocking rules 18 | 19 | ! site-specific popup blocking rules 20 | 21 | ! site-specific element hiding rules 22 | 23 | ! third-party blocking rules 24 | 25 | ! third-party popup blocking rules 26 | 27 | ! blocking exception rules 28 | 29 | ! dimension blocking exception rules 30 | 31 | ! element hiding exception rules 32 | 33 | ! popup blocking exception rules 34 | -------------------------------------------------------------------------------- /base_filters/romanian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | 19 | ! third-party blocking rules 20 | ||ado.icorp.ro^$third-party 21 | ||code3.adtlgc.com^$third-party 22 | ||content.adunity.com^$third-party 23 | ||projectagora.s3.amazonaws.com^$third-party 24 | 25 | ! third-party popup blocking rules 26 | 27 | ! blocking exception rules 28 | 29 | ! dimension blocking exception rules 30 | 31 | ! element hiding exception rules 32 | 33 | ! popup blocking exception rules 34 | -------------------------------------------------------------------------------- /base_filters/russian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||1dmp.io^$third-party 3 | ||3wnp9.ru^$third-party 4 | ||adblender.ru^$third-party 5 | ||cszz.ru^ 6 | ||datamind.ru^$third-party 7 | ||digitaltarget.ru^$third-party 8 | ||drivenetwork.ru^$third-party 9 | ||lentainform.com^$third-party 10 | ||mediametrics.ru^$third-party 11 | ||news.mirtesen.ru^$third-party 12 | ||nnn.ru^$third-party 13 | ||otm-r.com^$third-party 14 | ||rutarget.ru^$third-party 15 | ||smi2.ru^$third-party 16 | ||upravel.com^$third-party 17 | ||videonow.ru^$third-party 18 | 19 | ! adserver popup rules 20 | 21 | ! generic blocking rules 22 | .directadvert.ru^$third-party 23 | //jsn.$third-party,script 24 | 25 | ! generic dimension blocking rules 26 | 27 | ! generic popup blocking rules 28 | 29 | ! generic element hiding rules 30 | ##.directadvert-block 31 | ##div[class^="da-widget-"] 32 | ##div[class^="da-ya-widget"] 33 | ~directadvert.ru##a[href*="direct"][href*="advert.ru"] 34 | 35 | ! site-specific blocking rules 36 | ||criteo.net^$domain=avito.ru 37 | ||taboola.com^$domain=avito.ru 38 | 39 | ! site-specific popup blocking rules 40 | 41 | ! site-specific element hiding rules 42 | 19rus.info,2018.pp.ua,20minut.ua,2goroda.ru,365info.kz,3ys.ru,advis.ru,agronews.ua,agrotimes.net,autodmir.ru,avtodispetcher.ru,bakemono.ru,bel.ru,besplatka.ua,bestfm.ru,cbonds.ru,comments.ua,con-med.ru,cybersport.ru,dni.ru,echosevera.ru,epravda.com.ua,filmz.ru,flamp.ru,forklog.com,forum-profit.ru,gameguru.ru,gorodvitebsk.by,gp.by,haqqin.az,infpol.ru,investfunds.ru,ircity.ru,islam-today.ru,ivanovonews.ru,iz.ru,joborgame.ru,jut.su,k1news.ru,kafa-info.com.ua,kinozz.film,klavogonki.ru,knijky.ru,kt.kz,kursktv.ru,laradiofm.ru,locals.md,medialeaks.ru,megatyumen.ru,menportal.info,mixnews.lv,neboleem.net,nmedic.info,nv-online.info,obozrevatel.com,point.md,polochka.net,povarenok.ru,ppt4web.ru,pravda.com.ua,pravoved.ru,primemusic.cc,profibeer.ru,prostatitanet.com,redfm.ru,smolensk-i.ru,sovsport.ru,spanishrestaurant.ru,sportguide.kiev.ua,start33.ru,syzran-small.ru,the-flow.ru,thequestion.ru,tveda.ru,twentysix.ru,vashurok.ru,veterinargid.ru,vinnitsa.info,vklasse.online,vovka.su,vringe.com,vshkole.com,wowjp.net,xsport.ua,yvision.kz,zagorod.spb.ru,zaim-profi.ru,zaryad.me,zebra-tv.ru,zoohoz.ru##div[class*="banner"] 43 | dni.ru##.right.article-reklame > * > :not(.block_all_day) > * 44 | dni.ru##[class*="container"][class*="partner"] 45 | dni.ru#?##for_fix > *:-abp-has(.titlebar > span:-abp-contains(партнеры)) 46 | drom.ru,newsvl.ru,vl.ru##div[id*="candy"] 47 | iz.ru##.yandexzen 48 | lenta.ru##div[id^="rnet_lenta"][id*="tizera"] 49 | pikabu.ru#?#.story:-abp-has([class*="sponsor"]) 50 | pikabu.ru#?#.story:-abp-has([id^="crt-"]) 51 | vesti.ru##:not(.vgtrk-a1-list_inner) > .vgtrk-a1 52 | vesti.ru#?#.vgtrk-a1:-abp-has([id^="adfox_"]) 53 | 54 | ! third-party blocking rules 55 | ||an.yandex.ru^$domain=~e.mail.ru 56 | ||ad.mail.ru^$domain=~e.mail.ru|~octavius.mail.ru|~otvet.mail.ru 57 | ||awaps.yandex. 58 | ||bs.yandex.$script 59 | ||ssp.rambler.ru^$domain=~ssp.rambler.ru 60 | ||static-mon.yandex.net/static/main.js 61 | ||st.astraone.io^$third-party 62 | ||yandex.net/get-direct$domain=~direct.yandex.by|~direct.yandex.com|~direct.yandex.com.tr|~direct.yandex.fr|~direct.yandex.kz|~direct.yandex.ru|~direct.yandex.ua|~e.mail.ru 63 | ||yastatic.net/daas/ 64 | ||zen.yandex.*/widget-loader|$third-party 65 | 66 | ! third-party popup blocking rules 67 | ||lentainform.com/pnews/$third-party,popup 68 | 69 | ! blocking exception rules 70 | @@||awaps.yandex.$domain=kinopoisk.ru|market.yandex.by|market.yandex.kz|market.yandex.ru|market.yandex.ua 71 | @@||beeline.ru/ban/$domain=beeline.ru 72 | @@||vesti.ru/i/adv.png|$image 73 | @@||yastatic.net/pcode/adfox/loader.js$domain=101.ru|ficbook.net|forbes.ru|karaoke.ru|matchtv.ru|maxpark.com|newsland.com|shop.kp.ru|the-challenger.ru|vc.ru 74 | 75 | ! dimension blocking exception rules 76 | 77 | ! element hiding exception rules 78 | @@://yandex.ru/|$generichide 79 | livelib.ru,mail.ru,quantrum.me,revelationonlinedb.ru,seetv.tv,soccer365-1.xyz,soccer365.ru,track24.ru,vg672plpaer.ru#@#.ad_text 80 | 81 | ! popup blocking exception rules 82 | -------------------------------------------------------------------------------- /base_filters/spanish.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | ##.des-adv 13 | ##.envoltorio_publi 14 | ##.patrocinio 15 | 16 | ! site-specific blocking rules 17 | 18 | ! site-specific popup blocking rules 19 | 20 | ! site-specific element hiding rules 21 | animekb.com,carasycaretas.org.ar,ciclismoafondo.es,diario.mx,dinero.com,elrellano.com,eltribuno.info,expansion.com,gonzoo.com,iahorro.com,laizquierdadiario.com,latercera.com,lne.es,motociclismo.es,mountainbike.es,okdiario.com,publico.es,semana.com##.publicidad 22 | as.com##.publi 23 | 24 | ! third-party blocking rules 25 | 26 | ! third-party popup blocking rules 27 | 28 | ! blocking exception rules 29 | 30 | ! dimension blocking exception rules 31 | 32 | ! element hiding exception rules 33 | @@||elmundo.es^$generichide 34 | @@||marca.com^$generichide 35 | 36 | ! popup blocking exception rules 37 | -------------------------------------------------------------------------------- /base_filters/vietnamese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||adbro.me^$third-party 3 | ||admicro1.vcmedia.vn^$third-party 4 | ||adtima-static.zadn.vn^$script 5 | ||adtimaserver.vn^$third-party 6 | ||amcdn.vn^$third-party 7 | ||anthill.vn^$third-party 8 | ||gammaplatform.com^$third-party 9 | ||pub.lavanetwork.net^$third-party 10 | ||vietnamnetad.vn^$third-party 11 | ||yomedia.vn^$third-party 12 | 13 | ! adserver popup rules 14 | 15 | ! generic blocking rules 16 | .vn/ads/ 17 | /quangcao. 18 | 19 | ! generic dimension blocking rules 20 | 21 | ! generic popup blocking rules 22 | 23 | ! generic element hiding rules 24 | 25 | ! site-specific blocking rules 26 | 27 | ! site-specific popup blocking rules 28 | 29 | ! site-specific element hiding rules 30 | 24h.com.vn##[id^="bai_pr_"] 31 | baomoi.com##.is-pr 32 | eva.vn##.bai_pr_recomment_2 33 | eva.vn,24h.com.vn##[id^="ADS"] 34 | font.vn,news.zing.vn,shareyou.pro##.banner 35 | news.zing.vn,minhngoc.net.vn,vn-zoom.org##[id^="adv"] 36 | vnexpress.net##.box_sp 37 | thanhnien.vn##.qc 38 | 39 | ! third-party blocking rules 40 | ||image.24h.com.vn^*banner 41 | 42 | ! third-party popup blocking rules 43 | 44 | ! blocking exception rules 45 | 46 | ! dimension blocking exception rules 47 | 48 | ! element hiding exception rules 49 | 50 | ! popup blocking exception rules 51 | -------------------------------------------------------------------------------- /bulgarian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | alo.bg##div[class^="adv_"] 19 | alo.bg##div[id^="adv_"] 20 | alo.bg##div[style="position:relative;width:100%;height:282px;overflow: hidden;margin:5px 0px;"] 21 | alo.bg##.wrap300 22 | bg-mamma.com##.sponsored-topic 23 | vbox7.com##.banner 24 | vbox7.com##.bannerShow 25 | 26 | ! third-party blocking rules 27 | 28 | ! third-party popup blocking rules 29 | 30 | ! blocking exception rules 31 | 32 | ! dimension blocking exception rules 33 | 34 | ! element hiding exception rules 35 | 36 | ! popup blocking exception rules 37 | -------------------------------------------------------------------------------- /chinese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | 19 | ! third-party blocking rules 20 | 21 | ! third-party popup blocking rules 22 | 23 | ! blocking exception rules 24 | 25 | ! dimension blocking exception rules 26 | 27 | ! element hiding exception rules 28 | 29 | ! popup blocking exception rules 30 | -------------------------------------------------------------------------------- /czechandslovak.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | idnes.cz###branding 19 | idnes.cz###r-shp480 20 | prozeny.cz##div[class$="advert-rectangle"] 21 | 22 | ! third-party blocking rules 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /dutch.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | hln.be##.adv__slot 19 | telegraaf.nl##.ArticleBodyBlocks__inlineArticleSpotXBanner 20 | telegraaf.nl##.ArticlePageWrapper__banner 21 | telegraaf.nl##.MainCuratedTeasersLayout__banner 22 | telegraaf.nl##.SectionPage__bannerWrapper 23 | telegraaf.nl##.SecondaryCuratedTeasersLayout__bannerWrapper 24 | 25 | ! third-party blocking rules 26 | 27 | ! third-party popup blocking rules 28 | 29 | ! blocking exception rules 30 | 31 | ! dimension blocking exception rules 32 | 33 | ! element hiding exception rules 34 | 35 | ! popup blocking exception rules 36 | -------------------------------------------------------------------------------- /english.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||mysmokingmistress.com^$third-party 3 | 4 | ! adserver popup rules 5 | 6 | ! generic blocking rules 7 | /hwcdn.net^$media 8 | /owa.NativeAdList.js$script 9 | 10 | ! generic dimension blocking rules 11 | 12 | ! generic popup blocking rules 13 | 14 | ! generic element hiding rules 15 | ##.amzn-native-container 16 | ##.commercial-unit-mobile-top div[data-hveid="CAkQBA"] 17 | ##.featuredJobsAdSlot 18 | ##.mobile_instream_ad_resizable 19 | ##.mobileweb_top_ad_container 20 | ##.productad 21 | ##.serviceTop-recommend-ad 22 | ##.sponsoredJob 23 | ###anchorads 24 | 25 | ! site-specific blocking rules 26 | ||txxx.com/saber/ 27 | ||tubev.sex^*/nblock/ 28 | ||ashemaletube.com/ast/b_ 29 | 30 | ! site-specific popup blocking rules 31 | ||uflash.tv^$popup,domain=heavy-r.com 32 | 33 | ! site-specific element hiding rules 34 | allrecipes.com##.karma-slot--square-container 35 | ashemaletube.com##.adblock 36 | bang.com##a[href^="https://dat.itsup.com/"] 37 | bbc.com##.MPU 38 | beeg.com##.section.s-nmtv 39 | bestbuy.com##.shop-google-adsense 40 | cargurus.com#?#.T6DW7n:-abp-has(p:-abp-contains(Advertisements)) 41 | deviantart.com##.ad-container 42 | ebay.co.uk#?#.s-item:-abp-has(span:-abp-contains(SPONSORED)) 43 | ebay.com.au#?#li.s-item:-abp-has(span:-abp-contains(SPONSORED)) 44 | extremetube.com##.topAdtext 45 | gamepedia.com##.ad-container 46 | gamepedia.com##.xt-placement 47 | gamespot.com##.trc_elastic_alternating-thumbnails-a 48 | gfycat.com##.floating-container 49 | haberturk.com##.widget-masthead 50 | hclips.com##.rek-link 51 | hclips.com###hda-m 52 | indoxx1.stream###home-bnner-content 53 | ipcorner.io##.bannerdiv 54 | kakaku.com##.topSpotArea 55 | onedio.com###sponsored 56 | porn.com##.m-zne8 57 | porndroids.com##.aan 58 | sleazyneasy.com##.bottom-banners 59 | sleazyneasy.com##.top-spot 60 | sleazyneasy.com###pop-fade 61 | tribunnews.com##.anchor_banner 62 | tube8.com##.js-mobile-top-banner 63 | tubev.sex##.alc 64 | txxx.com##.mobile-channel-info 65 | txxx.com##.rek-wrap 66 | txxx.com###interstitial 67 | txxx.com###ud-m 68 | uol.com.br##.bannersticky-base 69 | uol.com.br##.bannersticky-top-container 70 | vg.no##.ad 71 | vg.no##.finn-placeholder 72 | youjizz.com##.bottom_pr 73 | youjizz.com##.top_pr 74 | 75 | ! third-party blocking rules 76 | ||ad.adpon.jp^$third-party 77 | ||wpnjs.com/pn.php 78 | 79 | ! third-party popup blocking rules 80 | ||adultd8.com^$popup,third-party 81 | ||aranelsingollo.com^$popup,third-party 82 | ||date-4-fuck.com^$popup,third-party 83 | ||gadispelakor.com^$popup,image,third-party 84 | ||jandamanja.com^$popup,image,third-party 85 | ||libertystmedia.com^$popup,third-party 86 | ||mobswift.com^$popup,third-party 87 | ||noclef.com^$popup,third-party 88 | ||onewaywin.com^$popup,image,third-party 89 | ||pemburujanda.net^$popup,image,third-party 90 | ||swiftfling.com^$popup,third-party 91 | ||trkgenius.com^$popup,image,third-party 92 | ||wrison-subustall.com^$popup,third-party 93 | ||wysasys.com^$popup,image,third-party 94 | ||xxx.game^$popup,third-party 95 | 96 | ! blocking exception rules 97 | @@/prebid_twn/modernizr_custom/*$domain=theweathernetwork.com 98 | 99 | ! dimension blocking exception rules 100 | 101 | ! element hiding exception rules 102 | 103 | ! popup blocking exception rules 104 | -------------------------------------------------------------------------------- /french.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | lemonde.fr,leparisien.fr###outbrain_widget_0 19 | 20 | ! third-party blocking rules 21 | 22 | ! third-party popup blocking rules 23 | 24 | ! blocking exception rules 25 | 26 | ! dimension blocking exception rules 27 | 28 | ! element hiding exception rules 29 | 30 | ! popup blocking exception rules 31 | -------------------------------------------------------------------------------- /german.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | ##.adsense-slot-wrapper 13 | ##.AdSticky 14 | ##.contentad-sticky-1 15 | ##.thirdPartySponsorLink 16 | ###anchor-ad 17 | 18 | ! site-specific blocking rules 19 | ||ad.doubleclick.net^$domain=spiegel.de 20 | ||adalliance.io^$domain=spiegel.de 21 | ||emsservice.de^$domain=spiegel.de 22 | ||googleads.g.doubleclick.net/pagead/ads?$subdocument,domain=vip.de 23 | ||tpc.googlesyndication.com/daca_images/simgad^$image,domain=vip.de 24 | ||yieldlab.net^$domain=spiegel.de 25 | 26 | ! site-specific popup blocking rules 27 | 28 | ! site-specific element hiding rules 29 | amazon.de###ape_detail_btf_detail-mWeb_wrapper 30 | amazon.de###ape_detail_btf2_mweb_wrapper 31 | amazon.de###ape_detail_btf2_mweb_text-wrapper 32 | amazon.de###ape_detail_btf_detail-mWeb_text-wrapper 33 | amazon.de###pdagMwebSparkle 34 | bento.de##.emsAnzeige 35 | bento.de##.emsAnzeige + [id^="google_ads_iframe_"] 36 | bento.de##.ob-p 37 | bz-berlin.de##.tbl-logo-right-position > .tbl-feed-header-text 38 | focus.de##.OUTBRAIN .ob-p 39 | gofeminin.de##.af-banner 40 | gmx.net,web.de##.adc-top 41 | sportbild.bild.de##div[data-skinning="tr-textlink"] 42 | stern.de#?#.emsTeaserContainer:-abp-contains(Anzeige) 43 | tz.de##div[data-id-advertdfpconf] 44 | vip.de##[id^="guj_ems_iframe_"] 45 | vip.de##iframe[id^="google_ads_iframe_"]:not([width="300"]) 46 | vip.de##iframe[src*="googleads.g.doubleclick.net/pagead/ads?"] 47 | welt.de##[data-tb-owning-region-name="sponsored"] 48 | wetter.de##div[class^="admanager__ems__mobile-"] 49 | widgets.outbrain.com##div[data-src^="https://m.spiegel.de/"] .ob-p 50 | 51 | ! third-party blocking rules 52 | 53 | ! third-party popup blocking rules 54 | 55 | ! blocking exception rules 56 | @@/gujAd.$domain=kochbar.de|stern.de|vip.de|wetter.de 57 | @@||adservice.google.*^adsid/integrator.$script,domain=vip.de 58 | @@||asadcdn.com/adlib^$domain=welt.de 59 | @@||bento.de/images/ad-time/$image,domain=bento.de 60 | @@||bf-ad.net/adengine/$script,domain=tvspielfilm.de 61 | @@||c.amazon-adsystem.com/aax2/apstag.js|$script,domain=transfermarkt.de 62 | @@||cdn.static-fra.de/ip/js/adcontrol/adcontrol.min.js|$domain=sport.de 63 | @@||ced.sascdn.com/tag/2161/smart.js$domain=metal-hammer.de|rollingstone.de 64 | @@||content.ikiosk.de^$domain=ikiosk.de 65 | @@||emsservice.de/data/$script,domain=bento.de 66 | @@||emsservice.de^$image,xmlhttprequest,domain=kochbar.de 67 | @@||g.doubleclick.net/gampad/$script,xmlhttprequest,domain=kochbar.de|stern.de 68 | @@||g.doubleclick.net/gampad/$xmlhttprequest,domain=bento.de|vip.de 69 | @@||g.doubleclick.net/gpt/$script,domain=bento.de|kochbar.de|stern.de|vip.de 70 | @@||g.doubleclick.net/pcs/click?$image,popup,domain=vip.de|kochbar.de|stern.de|wetter.de 71 | @@||googletagservices.com/tag/js/gpt.js|$script,domain=gofeminin.de 72 | @@||handelsblatt.com^$generichide 73 | @@||imasdk.googleapis.com/js/sdkloader/ima3.js|$script,domain=transfermarkt.de 74 | @@||ligatus.com/?ids=$script,domain=wetter.de 75 | @@||native.emsservice.de^$image,xmlhttprequest,domain=stern.de 76 | @@||securepubads.g.doubleclick.net^$script,domain=gofeminin.de 77 | @@||showheroes.com/prebid.$script,domain=metal-hammer.de|rollingstone.de 78 | @@||smartadserver.com/2161/call^$xmlhttprequest,domain=metal-hammer.de|rollingstone.de 79 | @@||sueddeutsche.de^$generichide 80 | @@||tpc.googlesyndication.com/pagead/imgad?$image,domain=vip.de|wetter.de 81 | 82 | ! dimension blocking exception rules 83 | 84 | ! element hiding exception rules 85 | autobild.de,bz-berlin.de#@#.banner_ad 86 | autobild.de,bz-berlin.de#@#.sponsored_ad 87 | autobild.de#@#.trc-first-recommendation 88 | autobild.de#@#.trc-spotlight-first-recommendation 89 | autobild.de,sportbild.bild.de#@#.trc_spotlight_item 90 | gofeminin.de,kochbar.de#@#a[href^="https://adclick.g.doubleclick.net/"] 91 | gofeminin.de#@#div[id^="div-gpt-ad"] 92 | kochbar.de,stern.de,vip.de,wetter.de#@#.gujAd 93 | stern.de#@#.ad-tag 94 | sueddeutsche.de#@#.ad 95 | vip.de,wetter.de#@#div[id^="google_ads_iframe_"] 96 | vip.de,wetter.de#@#iframe[id^="google_ads_iframe"] 97 | welt.de#@#.trc_related_container div[data-item-syndicated="true"] 98 | @@||auto-motor-und-sport.de^$generichide 99 | @@||bento.de^$generichide 100 | 101 | ! popup blocking exception rules 102 | -------------------------------------------------------------------------------- /hebrew.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | sport5.co.il##.videoArticle-carousel-holder-webParam 19 | walla.co.il##.fc.slot-buzzit 20 | zap.co.il##.FundedAds 21 | 22 | ! third-party blocking rules 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /indian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | ||lw2ofgc2zo.com^$third-party 3 | 4 | ! adserver popup rules 5 | 6 | ! generic blocking rules 7 | 8 | ! generic dimension blocking rules 9 | 10 | ! generic popup blocking rules 11 | 12 | ! generic element hiding rules 13 | 14 | ! site-specific blocking rules 15 | 16 | ! site-specific popup blocking rules 17 | |http:$popup,domain=metromusic.live 18 | |https:$popup,domain=metromusic.live 19 | 20 | ! site-specific element hiding rules 21 | 22 | ! third-party blocking rules 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /indonesian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | dable.io##td[data-ad_id^="ad_"] 13 | grid.id###div-Inside-MediumRectangle 14 | kaskus.co.id###my-ad-slot 15 | 16 | ! site-specific blocking rules 17 | 18 | ! site-specific popup blocking rules 19 | 20 | ! site-specific element hiding rules 21 | 22 | ! third-party blocking rules 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /italian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | ilgiornale.it###ilg_banner_mobile_crowdfunding 19 | 20 | ! third-party blocking rules 21 | 22 | ! third-party popup blocking rules 23 | ||quifinanza.it^$popup,third-party 24 | ||virgilio.it^$popup,third-party 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /korean.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | daum.net##.box_shopmoment 19 | dcinside.com##.adv-group 20 | inven.co.kr###mobileTailAd_Layer 21 | nate.com###ad_shbox 22 | nate.com##.new_ad 23 | todayhumor.co.kr##div[style="text-align:center;padding:15px 0;background-color:#e5e5e5"] 24 | yna.co.kr##[class*="aside-sticky"] 25 | yna.co.kr##a[class*="_popIn_recommend_article_ad"] 26 | 27 | ! third-party blocking rules 28 | ||m.11st.co.kr^$subdocument,third-party 29 | 30 | ! third-party popup blocking rules 31 | 32 | ! blocking exception rules 33 | 34 | ! dimension blocking exception rules 35 | 36 | ! element hiding exception rules 37 | 38 | ! popup blocking exception rules 39 | -------------------------------------------------------------------------------- /latvian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | delfi.lv##div[class*="city24-topBlock-wrapper"] 19 | delfi.lv##div[class="container bg-white d-block d-md-none"] 20 | delfi.lv##section[class*="container"][id*="-wdiget"] 21 | delfi.lv##section[class*="container"][id="custom-ads-block-5"] 22 | 23 | ! third-party blocking rules 24 | 25 | ! third-party popup blocking rules 26 | 27 | ! blocking exception rules 28 | @@/modules/ads/*$domain=seb.lt|seb.lv 29 | 30 | ! dimension blocking exception rules 31 | 32 | ! element hiding exception rules 33 | 34 | ! popup blocking exception rules 35 | -------------------------------------------------------------------------------- /lithuanian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | autogidas.lt##.citadele-content 19 | filmux.org##div[id^="ambn"] 20 | 21 | ! third-party blocking rules 22 | 23 | ! third-party popup blocking rules 24 | 25 | ! blocking exception rules 26 | 27 | ! dimension blocking exception rules 28 | 29 | ! element hiding exception rules 30 | 31 | ! popup blocking exception rules 32 | -------------------------------------------------------------------------------- /polish.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | pudelek.pl##.ads 19 | pudelek.pl##.wpApiAd 20 | ceneo.pl##.ado-space + .js_recommendations-container 21 | ceneo.pl##.ado-space + .js_recommendations-container + .js_recommendations-container 22 | ceneo.pl##.promoted-items 23 | ceneo.pl##[itemscope] + .js_recommendations-container 24 | ceneo.pl##[itemscope] + .js_recommendations-container + .js_recommendations-container 25 | 26 | ! third-party blocking rules 27 | ||shoperia.pl/embed,$subdocument,third-party 28 | 29 | ! third-party popup blocking rules 30 | 31 | ! blocking exception rules 32 | 33 | ! dimension blocking exception rules 34 | 35 | ! element hiding exception rules 36 | 37 | ! popup blocking exception rules 38 | -------------------------------------------------------------------------------- /portuguese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | ||loboclick.com^$script,domain=xvideos10.blog.br 15 | 16 | ! site-specific popup blocking rules 17 | 18 | ! site-specific element hiding rules 19 | 1news.com.br##img[width="299"][height="254"] 20 | mercadolivre.com.br#?#li.item:-abp-has(span:-abp-contains( Patrocinado )) 21 | 22 | ! third-party blocking rules 23 | 24 | ! third-party popup blocking rules 25 | 26 | ! blocking exception rules 27 | 28 | ! dimension blocking exception rules 29 | 30 | ! element hiding exception rules 31 | 32 | ! popup blocking exception rules 33 | -------------------------------------------------------------------------------- /romanian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | 19 | ! third-party blocking rules 20 | 21 | ! third-party popup blocking rules 22 | 23 | ! blocking exception rules 24 | 25 | ! dimension blocking exception rules 26 | 27 | ! element hiding exception rules 28 | 29 | ! popup blocking exception rules 30 | -------------------------------------------------------------------------------- /russian.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | ||alibaba-service.ru^$third-party,popup 17 | ||mazda-varshavka.ru^$third-party,popup 18 | ||pszh.ru^$third-party,popup 19 | ||tlg.name/lentadnya^$third-party,popup 20 | ||traffim.com^$popup,third-party 21 | ||sok.media^$third-party,popup 22 | ||wisokykulas.bid^$popup,third-party 23 | 24 | ! site-specific element hiding rules 25 | 26 | ! third-party blocking rules 27 | 28 | ! third-party popup blocking rules 29 | 30 | ! blocking exception rules 31 | 32 | ! dimension blocking exception rules 33 | 34 | ! element hiding exception rules 35 | 36 | ! popup blocking exception rules 37 | -------------------------------------------------------------------------------- /spanish.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | ##.ad-background-image 13 | 14 | ! site-specific blocking rules 15 | 16 | ! site-specific popup blocking rules 17 | 18 | ! site-specific element hiding rules 19 | mercadolibre.com.ar,mercadolibre.com.mx#?#li.item:-abp-has(span:-abp-contains( Promocionado )) 20 | 21 | ! third-party blocking rules 22 | 23 | ! third-party popup blocking rules 24 | 25 | ! blocking exception rules 26 | 27 | ! dimension blocking exception rules 28 | 29 | ! element hiding exception rules 30 | 31 | ! popup blocking exception rules 32 | -------------------------------------------------------------------------------- /vietnamese.txt: -------------------------------------------------------------------------------- 1 | ! adservers 2 | 3 | ! adserver popup rules 4 | 5 | ! generic blocking rules 6 | 7 | ! generic dimension blocking rules 8 | 9 | ! generic popup blocking rules 10 | 11 | ! generic element hiding rules 12 | 13 | ! site-specific blocking rules 14 | 15 | ! site-specific popup blocking rules 16 | 17 | ! site-specific element hiding rules 18 | 24h.com.vn,eva.vn##.banner 19 | taimienphi.vn##.adbox 20 | truyenfull.vn##div[id^="ads-"] 21 | vnexpress.net###banner_top 22 | 23 | ! third-party blocking rules 24 | 25 | ! third-party popup blocking rules 26 | 27 | ! blocking exception rules 28 | 29 | ! dimension blocking exception rules 30 | 31 | ! element hiding exception rules 32 | 33 | ! popup blocking exception rules 34 | --------------------------------------------------------------------------------