├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── dupcheck.yml ├── LICENSE ├── README-en.md ├── README.md ├── docs ├── banner.png └── manual-usage.mp4 ├── hosts.txt ├── only-stackoverflow.txt ├── scripts ├── .gitignore ├── build.py └── dupcheck.bash ├── templates ├── only-stackoverflow.txt └── ublacklist.txt └── ublacklist.txt /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | end_of_line = lf 7 | insert_final_newline = true 8 | charset = utf-8 9 | 10 | [*.bash] 11 | indent_size = 4 12 | indent_style = space 13 | 14 | [*.md] 15 | indent_size = 4 16 | indent_style = space 17 | 18 | [*.py] 19 | indent_size = 4 20 | indent_style = space 21 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build rules 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | - develop 8 | paths: 9 | - 'scripts/*' 10 | - 'templates/*' 11 | - 'hosts.txt' 12 | 13 | jobs: 14 | build: 15 | runs-on: ubuntu-latest 16 | if: github.repository == 'RyuaNerin/only-stackoverflow' && github.event.head_commit.author.email != 'action@github.com' 17 | steps: 18 | - name: Checkout repository 19 | uses: actions/checkout@v4 20 | with: 21 | persist-credentials: false 22 | fetch-depth: 0 23 | 24 | - uses: actions/setup-python@v5 25 | with: 26 | python-version: '3.11' 27 | 28 | - name: Build 29 | run: python scripts/build.py 30 | 31 | - name: Commit 32 | run: | 33 | git add only-stackoverflow.txt 34 | git add ublacklist.txt 35 | git config --local user.email "action@github.com" 36 | git config --local user.name "GitHub Action" 37 | git commit -m "Build rules" -a 38 | 39 | - name: Push to protected branch 40 | uses: CasperWA/push-protected@v2 41 | with: 42 | token: ${{ secrets.PUSH_TO_PROTECTED_BRANCH }} 43 | branch: master 44 | unprotect_reviews: true 45 | -------------------------------------------------------------------------------- /.github/workflows/dupcheck.yml: -------------------------------------------------------------------------------- 1 | name: dupcheck 2 | 3 | on: [ push, pull_request ] 4 | 5 | jobs: 6 | dupcheck: 7 | runs-on: ubuntu-latest 8 | if: github.event.head_commit.author.email != 'action@github.com' 9 | steps: 10 | - name: Checkout repository 11 | uses: actions/checkout@v3 12 | with: 13 | persist-credentials: false 14 | fetch-depth: 0 15 | 16 | - name: Check 17 | run: bash scripts/dupcheck.bash 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. 396 | -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- 1 | # only-stackoverflow 2 | 3 | [![Subscribe filter](https://img.shields.io/badge/Subscribe%20Filter-Adblock%20Plus-brightgreen?logo=adblockplus)](https://subscribe.adblockplus.org/?location=https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt&title=only-stackoverflow) 4 | 5 | ![banner](docs/banner.png) 6 | 7 | - [README (한국어)](README.md) 8 | 9 | - Hide stackoverflow copy sites(e.g. stackoverrun) with browser plugins from search results. 10 | 11 | - Currently supports [Google](https://www.google.com) and [DuckDuckGo](https://duckduckgo.com). 12 | 13 | - Issues and PRs are always welcome 14 | - Please modify only the files below. `only-stackoverflow.txt` will be generated automatically. 15 | - [`build.bash`](build.bash) 16 | - [`hosts.txt`](hosts.txt) 17 | 18 | ## [Subscribe only-stackoverflow filter](https://subscribe.adblockplus.org/?location=https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt&title=only-stackoverflow) 19 | 20 | - **Tested plugins** 21 | - **Adguard** 22 | - **uBlock Origin** 23 | - **Personal Blocklist(not by Google)** 24 | - **Adblock Plus** 25 | - **AdBlock** 26 | 27 | - Precautions 28 | - If you allow "acceptable ads" in Adblock Plus or subscribe "acceptable ads" filter, filters will not apply on google. You need to turn it off in order to use only-stackoverflow filter. 29 | 30 | ### Adblock Plus Subscription Link (Recommend) 31 | 32 | [Click me](https://subscribe.adblockplus.org/?location=https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt&title=only-stackoverflow) to use filters and subscribe the latest changes. 33 | 34 | ### Manual 35 | 36 |
37 | Tutorials on AdGuard 38 | 39 | https://github.com/RyuaNerin/only-stackoverflow/assets/6766851/ddb8c013-8c7c-4773-ad0a-af27bf46cad8 40 | 41 |
42 | 43 | Like the video in the example above, please add the link below and use it. The latest changes may not be reflected, so We recommend using them only if the above does not work. 44 | 45 | ```txt 46 | https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt 47 | ``` 48 | 49 | ## [Blocked sites list](hosts.txt) 50 | 51 | ## License 52 | 53 | - [Creative Commons Attribution 4.0 International License.](/LICENSE) 54 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # only-stackoverflow 2 | 3 | [![필터 구독하기](https://img.shields.io/badge/Subscribe%20Filter-Adblock%20Plus-brightgreen?logo=adblockplus)](https://subscribe.adblockplus.org/?location=https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt&title=only-stackoverflow) 4 | 5 | ![banner](docs/banner.png) 6 | 7 | - [README (english)](README-en.md) 8 | 9 | - 검색 결과에서 스택오버플로 사이트 긁어다가 번역기 돌려놓은 이상한 사이트들을 모조리 숨겨요 10 | 11 | - [구글](https://google.co.kr)과 [덕덕고](https://duckduckgo.com/)를 지원해요. 12 | 13 | - 이슈/풀리퀘 매우 환영 14 | - 아래의 2 파일만 수정해주세요. `only-stackoverflow.txt` 파일은 자동으로 생성됩니다. 15 | - [`build.bash`](build.bash) 16 | - [`hosts.txt`](hosts.txt) 17 | 18 | ## only-stackoverflow 필터 구독하기 19 | 20 | - **테스트된 플러그인** 21 | - **AdGuard** 22 | - **uBlock Origin** 23 | - **Personal Blocklist(not by Google)** 24 | - **Adblock Plus** 25 | - **AdBlock** 26 | 27 | - Adblock Plus, AdBlock 사용시 주의사항 28 | - (Adblock Plus) "허용되는 광고"를 허용하거나 (AdBlock) "허용할만한 광고" 필터를 구독하면 google.com에서 모든 필터가 적용되지 않습니다. 이를 해제해야 합니다. 29 | 30 | ### Adblock Plus Subscription 링크를 통한 구독 (권장) 31 | 32 | [링크](https://subscribe.adblockplus.org/?location=https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt&title=only-stackoverflow)를 눌러 항상 최신의 구독 정보를 유지하세요. 33 | 34 | ### 사용자 정의 필터에 직접 추가하여 사용 35 | 36 |
37 | AdGuard 사용 예시 38 | 39 | https://github.com/RyuaNerin/only-stackoverflow/assets/6766851/ddb8c013-8c7c-4773-ad0a-af27bf46cad8 40 | 41 |
42 | 43 | 위 예시 속 영상처럼 아래 링크를 직접 추가해서 사용해보세요. 최신 변경사항이 반영되지 않을 수도 있어서 위 방법이 작동하지 않는 경우에만 사용하는 것을 권해드려요. 44 | 45 | ```txt 46 | https://github.com/RyuaNerin/only-stackoverflow/raw/master/only-stackoverflow.txt 47 | ``` 48 | 49 | ## [차단하는 사이트 목록](hosts.txt) 50 | 51 | ## License 52 | 53 | - [Creative Commons Attribution 4.0 International License.](/LICENSE) 54 | -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyuaNerin/only-stackoverflow/b42707e8c7c4d112617db02668935e11a2a4319d/docs/banner.png -------------------------------------------------------------------------------- /docs/manual-usage.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyuaNerin/only-stackoverflow/b42707e8c7c4d112617db02668935e11a2a4319d/docs/manual-usage.mp4 -------------------------------------------------------------------------------- /hosts.txt: -------------------------------------------------------------------------------- 1 | #################################################################################################### 2 | # 빌드할 때 재정렬하기 때문에 새로운 host는 마지막 줄에 추가해 주세요. 3 | # 와일드카드(*, ?) 문자를 사용할 수 있습니다. 4 | # This file will be rearranged on build. So please add the new hosts after the last line. 5 | # You can use wildcard characters (* and ?). 6 | #################################################################################################### 7 | *.code-pager.com 8 | 202psj.tistory.com 9 | adoclib.com 10 | alwaysemmyhope.com 11 | androiderrors.com 12 | angularfixing.com 13 | answer-id.com 14 | answeright.com 15 | antarblog.com 16 | anycodings.com 17 | appsloveworld.com 18 | ask.roboflow.ai 19 | ask.xiaolee.net 20 | askdev.* 21 | askvoprosy.com 22 | auespy.com 23 | big-blog.tistory.com 24 | bleepcoder.com 25 | brocante.dev 26 | bugsdb.com 27 | buildwebhost.com 28 | c0debot.com 29 | c10106.tistory.com 30 | cache.one 31 | cainhuang.com 32 | catchconsole.com 33 | cnpnote.tistory.com 34 | coddingbuddy.com 35 | code-examples.net 36 | codebug.zone 37 | codehunter.cc 38 | codeproject.com 39 | coder-question-ko.com 40 | coder-question.com 41 | coder-solution.com 42 | coder.work 43 | coderbridge.com 44 | coderedirect.com 45 | coderoad.ru 46 | codestyle.tistory.com 47 | codetd.com 48 | codetrash.com 49 | codingkit.com 50 | csharppedia.com 51 | daedab.com 52 | daplus.net 53 | data-sc.net 54 | debugcn.com 55 | develop-bugs.com 56 | developreference.com 57 | dtuto.com 58 | e-learn.cn 59 | example-code.com 60 | exchangetuts.com 61 | firstlightsalon.in 62 | generacodice.com 63 | generacodice.it 64 | ghcc.net 65 | gitmemory.com 66 | gotxt.net 67 | hiengo.com 68 | holadevs.com 69 | hot-time.tistory.com 70 | i-harness.com 71 | iaxi.net 72 | ichi.pro 73 | idaemon.net 74 | idqna.madreview.net 75 | iiii.tistory.com 76 | inputbox.tistory.com 77 | intellipaat.com 78 | intrepidgeeks.com 79 | isolution.pro 80 | it-gundan.* 81 | it-man.tistory.com 82 | it-reply.net 83 | it-swarm-ko.* 84 | it-swarm.* 85 | it1352.com 86 | itbaoku.cn 87 | itboxs.tistory.com 88 | itecnote.com 89 | itectec.com 90 | itsource.tistory.com 91 | ittutorialpoint.com 92 | java2020.com 93 | javacodexamples.com 94 | javaer101.com 95 | javafixing.com 96 | jike.in 97 | jonic.cn 98 | kejisen.com 99 | kiwix.ounapuu.ee 100 | knews.vip 101 | ko.ojit.com 102 | krcodeblog.com 103 | localcoder.org 104 | lottogame.tistory.com 105 | lottoking.tistory.com 106 | manongdao.com 107 | melkia.dev 108 | messiahlebanon.org 109 | microeducate.tech 110 | minorman.tistory.com 111 | newbedev.com 112 | nicescript.tistory.com 113 | ogeek.cn 114 | optionbox.tistory.com 115 | ostack.cn 116 | presmarymethuen.org 117 | pretagteam.com 118 | procodes.tistory.com 119 | programqa.com 120 | programtip.tistory.com 121 | py4u.net 122 | python2.net 123 | python5.com 124 | pythonq.com 125 | qa.overstack.in 126 | qastack.* 127 | radiobox.tistory.com 128 | randomtip.tistory.com 129 | recalll.co 130 | rotadev.com 131 | runebook.dev 132 | semicolonworld.com 133 | serveanswer.com 134 | smnggeophysics.com 135 | so.muouseo.com 136 | solveforum.com 137 | src-bin.com 138 | stackanswers.net 139 | stackguides.com 140 | stackoom.com 141 | stackovergo.com 142 | stackovernet.* 143 | stackoverrun.com 144 | svcministry.org 145 | techhelpnotes.com 146 | thefunky-monkey.com 147 | thetopsites.net 148 | thinbug.com 149 | tonsu.in 150 | topgoodhosting.com 151 | tr.coredump.biz 152 | turismocomunitarioguatemala.com 153 | tutorialmeta.com 154 | ubuntugeeks.com 155 | uwenku.com 156 | voidcc.com 157 | w3bai.com 158 | webdevdesigner.com 159 | wekeepcoding.com 160 | wepython.cc 161 | wikiqube.net 162 | www.faqcode4u.com 163 | xspdf.com 164 | yingqusp.com 165 | -------------------------------------------------------------------------------- /only-stackoverflow.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! 3 | ! Please do not copy this file, Subscribe this filter by clicking the "Subscribe only-stackoverflow filter" button in the middle of the link below. 4 | ! 이 파일을 복사하지 말고 아래 링크의 중간에 있는 "추가하기" 버튼을 클릭하여 추가해주세요. 5 | ! https://github.com/RyuaNerin/only-stackoverflow 6 | ! 7 | ! Title: only-stackoverflow 8 | ! Description: Hide copy of stackoverflow from google and duckduckgo search results. (e.g. stackoverrun) 9 | ! Homepage: https://github.com/RyuaNerin/only-stackoverflow 10 | ! License: https://github.com/RyuaNerin/only-stackoverflow#license 11 | ! Expires: 1 hour 12 | ! Version: 2025.04.02.05.59 (UTC) 13 | ! 14 | google.*#?#:is(div#search, div#botstuff) div[data-async-context] div.g[data-ved]:-abp-contains(/(?:\w+\.code\-pager\.com|202psj\.tistory\.com|a(?:doclib\.com|lwaysemmyhope\.com|n(?:droiderrors\.com|gularfixing\.com|swer(?:\-id\.com|ight\.com)|tarblog\.com|ycodings\.com)|ppsloveworld\.com|sk(?:\.(?:roboflow\.ai|xiaolee\.net)|dev\.\w+|voprosy\.com)|uespy\.com)|b(?:ig\-blog\.tistory\.com|leepcoder\.com|rocante\.dev|u(?:gsdb\.com|ildwebhost\.com))|c(?:0debot\.com|10106\.tistory\.com|a(?:che\.one|inhuang\.com|tchconsole\.com)|npnote\.tistory\.com|od(?:dingbuddy\.com|e(?:\-examples\.net|bug\.zone|hunter\.cc|project\.com|r(?:\-(?:question(?:\-ko\.com|\.com)|solution\.com)|\.work|bridge\.com|edirect\.com|oad\.ru)|style\.tistory\.com|t(?:d\.com|rash\.com))|ingkit\.com)|sharppedia\.com)|d(?:a(?:edab\.com|plus\.net|ta\-sc\.net)|e(?:bugcn\.com|velop(?:\-bugs\.com|reference\.com))|tuto\.com)|e(?:\-learn\.cn|x(?:ample\-code\.com|changetuts\.com))|firstlightsalon\.in|g(?:eneracodice\.(?:com|it)|hcc\.net|itmemory\.com|otxt\.net)|h(?:iengo\.com|o(?:ladevs\.com|t\-time\.tistory\.com))|i(?:\-harness\.com|axi\.net|chi\.pro|d(?:aemon\.net|qna\.madreview\.net)|iii\.tistory\.com|n(?:putbox\.tistory\.com|t(?:ellipaat\.com|repidgeeks\.com))|solution\.pro|t(?:\-(?:gundan\.\w+|man\.tistory\.com|reply\.net|swarm(?:\-ko\.\w+|\.\w+))|1352\.com|b(?:aoku\.cn|oxs\.tistory\.com)|ec(?:note\.com|tec\.com)|source\.tistory\.com|tutorialpoint\.com))|j(?:ava(?:2020\.com|codexamples\.com|er101\.com|fixing\.com)|ike\.in|onic\.cn)|k(?:ejisen\.com|iwix\.ounapuu\.ee|news\.vip|o\.ojit\.com|rcodeblog\.com)|lo(?:calcoder\.org|tto(?:game\.tistory\.com|king\.tistory\.com))|m(?:anongdao\.com|e(?:lkia\.dev|ssiahlebanon\.org)|i(?:croeducate\.tech|norman\.tistory\.com))|n(?:ewbedev\.com|icescript\.tistory\.com)|o(?:geek\.cn|ptionbox\.tistory\.com|stack\.cn)|p(?:r(?:e(?:smarymethuen\.org|tagteam\.com)|o(?:codes\.tistory\.com|gram(?:qa\.com|tip\.tistory\.com)))|y(?:4u\.net|thon(?:2\.net|5\.com|q\.com)))|qa(?:\.overstack\.in|stack\.\w+)|r(?:a(?:diobox\.tistory\.com|ndomtip\.tistory\.com)|ecalll\.co|otadev\.com|unebook\.dev)|s(?:e(?:micolonworld\.com|rveanswer\.com)|mnggeophysics\.com|o(?:\.muouseo\.com|lveforum\.com)|rc\-bin\.com|tack(?:answers\.net|guides\.com|o(?:om\.com|ver(?:go\.com|net\.\w+|run\.com)))|vcministry\.org)|t(?:echhelpnotes\.com|h(?:e(?:funky\-monkey\.com|topsites\.net)|inbug\.com)|o(?:nsu\.in|pgoodhosting\.com)|r\.coredump\.biz|u(?:rismocomunitarioguatemala\.com|torialmeta\.com))|u(?:buntugeeks\.com|wenku\.com)|voidcc\.com|w(?:3bai\.com|e(?:bdevdesigner\.com|keepcoding\.com|python\.cc)|ikiqube\.net|ww\.faqcode4u\.com)|xspdf\.com|yingqusp\.com)/) 15 | duckduckgo.com#?#div.results article:-abp-contains(/(?:\w+\.code\-pager\.com|202psj\.tistory\.com|a(?:doclib\.com|lwaysemmyhope\.com|n(?:droiderrors\.com|gularfixing\.com|swer(?:\-id\.com|ight\.com)|tarblog\.com|ycodings\.com)|ppsloveworld\.com|sk(?:\.(?:roboflow\.ai|xiaolee\.net)|dev\.\w+|voprosy\.com)|uespy\.com)|b(?:ig\-blog\.tistory\.com|leepcoder\.com|rocante\.dev|u(?:gsdb\.com|ildwebhost\.com))|c(?:0debot\.com|10106\.tistory\.com|a(?:che\.one|inhuang\.com|tchconsole\.com)|npnote\.tistory\.com|od(?:dingbuddy\.com|e(?:\-examples\.net|bug\.zone|hunter\.cc|project\.com|r(?:\-(?:question(?:\-ko\.com|\.com)|solution\.com)|\.work|bridge\.com|edirect\.com|oad\.ru)|style\.tistory\.com|t(?:d\.com|rash\.com))|ingkit\.com)|sharppedia\.com)|d(?:a(?:edab\.com|plus\.net|ta\-sc\.net)|e(?:bugcn\.com|velop(?:\-bugs\.com|reference\.com))|tuto\.com)|e(?:\-learn\.cn|x(?:ample\-code\.com|changetuts\.com))|firstlightsalon\.in|g(?:eneracodice\.(?:com|it)|hcc\.net|itmemory\.com|otxt\.net)|h(?:iengo\.com|o(?:ladevs\.com|t\-time\.tistory\.com))|i(?:\-harness\.com|axi\.net|chi\.pro|d(?:aemon\.net|qna\.madreview\.net)|iii\.tistory\.com|n(?:putbox\.tistory\.com|t(?:ellipaat\.com|repidgeeks\.com))|solution\.pro|t(?:\-(?:gundan\.\w+|man\.tistory\.com|reply\.net|swarm(?:\-ko\.\w+|\.\w+))|1352\.com|b(?:aoku\.cn|oxs\.tistory\.com)|ec(?:note\.com|tec\.com)|source\.tistory\.com|tutorialpoint\.com))|j(?:ava(?:2020\.com|codexamples\.com|er101\.com|fixing\.com)|ike\.in|onic\.cn)|k(?:ejisen\.com|iwix\.ounapuu\.ee|news\.vip|o\.ojit\.com|rcodeblog\.com)|lo(?:calcoder\.org|tto(?:game\.tistory\.com|king\.tistory\.com))|m(?:anongdao\.com|e(?:lkia\.dev|ssiahlebanon\.org)|i(?:croeducate\.tech|norman\.tistory\.com))|n(?:ewbedev\.com|icescript\.tistory\.com)|o(?:geek\.cn|ptionbox\.tistory\.com|stack\.cn)|p(?:r(?:e(?:smarymethuen\.org|tagteam\.com)|o(?:codes\.tistory\.com|gram(?:qa\.com|tip\.tistory\.com)))|y(?:4u\.net|thon(?:2\.net|5\.com|q\.com)))|qa(?:\.overstack\.in|stack\.\w+)|r(?:a(?:diobox\.tistory\.com|ndomtip\.tistory\.com)|ecalll\.co|otadev\.com|unebook\.dev)|s(?:e(?:micolonworld\.com|rveanswer\.com)|mnggeophysics\.com|o(?:\.muouseo\.com|lveforum\.com)|rc\-bin\.com|tack(?:answers\.net|guides\.com|o(?:om\.com|ver(?:go\.com|net\.\w+|run\.com)))|vcministry\.org)|t(?:echhelpnotes\.com|h(?:e(?:funky\-monkey\.com|topsites\.net)|inbug\.com)|o(?:nsu\.in|pgoodhosting\.com)|r\.coredump\.biz|u(?:rismocomunitarioguatemala\.com|torialmeta\.com))|u(?:buntugeeks\.com|wenku\.com)|voidcc\.com|w(?:3bai\.com|e(?:bdevdesigner\.com|keepcoding\.com|python\.cc)|ikiqube\.net|ww\.faqcode4u\.com)|xspdf\.com|yingqusp\.com)/) 16 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /scripts/build.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import typing 3 | from string import Template 4 | 5 | 6 | class Trie: 7 | """Regexp::Trie in python. Creates a Trie out of a list of words. The trie can be exported to a Regexp pattern. 8 | The corresponding Regexp should match much faster than a simple Regexp union.""" 9 | 10 | # 11 | # author: rex 12 | # blog: http://iregex.org 13 | # filename trie.py 14 | # created: 2010-08-01 20:24 15 | # source uri: http://iregex.org/blog/trie-in-python.html 16 | 17 | # escape bug fix by fcicq @ 2012.8.19 18 | # python3 compatible by EricDuminil @ 2017.03. 19 | import re 20 | 21 | escape_table = { 22 | ".": "\\.", 23 | "?": ".", 24 | "-": "\\-", 25 | "*": "\\w+", 26 | } 27 | 28 | def __init__(self): 29 | self.data = {} 30 | 31 | def add(self, word): 32 | ref = self.data 33 | for char in word: 34 | ref[char] = char in ref and ref[char] or {} 35 | ref = ref[char] 36 | ref[""] = 1 37 | 38 | def dump(self): 39 | return self.data 40 | 41 | def quote(self, char): 42 | return Trie.escape_table.get(char) or Trie.re.escape(char) 43 | 44 | def _pattern(self, pData): 45 | data = pData 46 | if "" in data and len(data.keys()) == 1: 47 | return None 48 | 49 | alt = [] 50 | cc = [] 51 | q = 0 52 | for char in sorted(data.keys()): 53 | if isinstance(data[char], dict): 54 | try: 55 | recurse = self._pattern(data[char]) 56 | alt.append(self.quote(char) + recurse) 57 | except: # noqa: E722 58 | cc.append(self.quote(char)) 59 | else: 60 | q = 1 61 | cconly = not len(alt) > 0 62 | 63 | if len(cc) > 0: 64 | if len(cc) == 1: 65 | alt.append(cc[0]) 66 | else: 67 | alt.append("[" + "".join(cc) + "]") 68 | 69 | if len(alt) == 1: 70 | result = alt[0] 71 | else: 72 | result = "(?:" + "|".join(alt) + ")" 73 | 74 | if q: 75 | if cconly: 76 | result += "?" 77 | else: 78 | result = "(?:%s)?" % result 79 | return result 80 | 81 | def pattern(self): 82 | return self._pattern(self.dump()) 83 | 84 | 85 | def read_and_order_hosts() -> typing.List[str]: 86 | headers = [] 87 | hosts = set() 88 | 89 | with open("hosts.txt", "r+", encoding="utf-8") as fs: 90 | for line in fs: 91 | line = line.strip() 92 | 93 | if line.startswith("#"): 94 | headers.append(line) 95 | else: 96 | hosts.add(line) 97 | 98 | hosts = list(sorted(hosts)) 99 | 100 | fs.truncate(0) 101 | fs.seek(0, 0) 102 | 103 | for line in headers: 104 | fs.write(line) 105 | fs.write("\n") 106 | 107 | for line in hosts: 108 | fs.write(line) 109 | fs.write("\n") 110 | 111 | return hosts 112 | 113 | 114 | def build_regex(hosts: typing.List[str]) -> str: 115 | trie = Trie() 116 | for v in hosts: 117 | trie.add(v) 118 | 119 | return trie.pattern() 120 | 121 | 122 | def build_ubl(hosts: typing.List[str]) -> str: 123 | lines = [] 124 | trie = Trie() 125 | 126 | for x in hosts: 127 | if "?" in x or ("*" in x and not x.startswith("*")): 128 | trie.add(x) 129 | else: 130 | lines.append(f"*://{x}/*") 131 | 132 | lines.append(f"/^.*:\\/\\/{trie.pattern()}\\//") 133 | 134 | return "\n".join(lines) 135 | 136 | 137 | def render(path: str, path_template: str, kargv: dict) -> str: 138 | with open(path_template, "r", encoding="utf-8") as fs: 139 | tmpl = Template(fs.read()) 140 | 141 | with open(path, "w", encoding="utf-8") as fs: 142 | fs.truncate(0) 143 | fs.seek(0, 0) 144 | fs.write(tmpl.substitute(**kargv)) 145 | 146 | 147 | if __name__ == "__main__": 148 | now = ( 149 | datetime.datetime.now(datetime.timezone.utc).strftime("%Y.%m.%d.%H.%M") 150 | + " (UTC)" 151 | ) 152 | 153 | hosts = read_and_order_hosts() 154 | regex = build_regex(hosts) 155 | ubl = build_ubl(hosts) 156 | 157 | kargv = { 158 | "NOW": now, 159 | "HOSTS": hosts, 160 | "REGEX": regex, 161 | "UBL": ubl, 162 | } 163 | 164 | render("only-stackoverflow.txt", "templates/only-stackoverflow.txt", kargv) 165 | render("ublacklist.txt", "templates/ublacklist.txt", kargv) 166 | -------------------------------------------------------------------------------- /scripts/dupcheck.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | HOST_HEADER_LINES=$(grep -c '#.*' hosts.txt) 4 | HOST_LIST1=$(tail -n +$((${HOST_HEADER_LINES}+1)) hosts.txt | sort -nf | wc -l) 5 | HOST_LIST2=$(tail -n +$((${HOST_HEADER_LINES}+1)) hosts.txt | sort -nf | uniq | wc -l) 6 | 7 | if (( $HOST_LIST1 != $HOST_LIST2 )); then 8 | exit 1 9 | fi 10 | -------------------------------------------------------------------------------- /templates/only-stackoverflow.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! 3 | ! Please do not copy this file, Subscribe this filter by clicking the "Subscribe only-stackoverflow filter" button in the middle of the link below. 4 | ! 이 파일을 복사하지 말고 아래 링크의 중간에 있는 "추가하기" 버튼을 클릭하여 추가해주세요. 5 | ! https://github.com/RyuaNerin/only-stackoverflow 6 | ! 7 | ! Title: only-stackoverflow 8 | ! Description: Hide copy of stackoverflow from google and duckduckgo search results. (e.g. stackoverrun) 9 | ! Homepage: https://github.com/RyuaNerin/only-stackoverflow 10 | ! License: https://github.com/RyuaNerin/only-stackoverflow#license 11 | ! Expires: 1 hour 12 | ! Version: ${NOW} 13 | ! 14 | google.*#?#:is(div#search, div#botstuff) div[data-async-context] div.g[data-ved]:-abp-contains(/${REGEX}/) 15 | duckduckgo.com#?#div.results article:-abp-contains(/${REGEX}/) 16 | -------------------------------------------------------------------------------- /templates/ublacklist.txt: -------------------------------------------------------------------------------- 1 | # Please do not copy this file, Subscribe this filter by the link below 2 | # 이 파일을 복사하지 말고 아래 링크를 구독해주세요. 3 | # https://raw.githubusercontent.com/RyuaNerin/only-stackoverflow/master/ublacklist.txt 4 | # 5 | ${UBL} 6 | -------------------------------------------------------------------------------- /ublacklist.txt: -------------------------------------------------------------------------------- 1 | # Please do not copy this file, Subscribe this filter by the link below 2 | # 이 파일을 복사하지 말고 아래 링크를 구독해주세요. 3 | # https://raw.githubusercontent.com/RyuaNerin/only-stackoverflow/master/ublacklist.txt 4 | # 5 | *://*.code-pager.com/* 6 | *://202psj.tistory.com/* 7 | *://adoclib.com/* 8 | *://alwaysemmyhope.com/* 9 | *://androiderrors.com/* 10 | *://angularfixing.com/* 11 | *://answer-id.com/* 12 | *://answeright.com/* 13 | *://antarblog.com/* 14 | *://anycodings.com/* 15 | *://appsloveworld.com/* 16 | *://ask.roboflow.ai/* 17 | *://ask.xiaolee.net/* 18 | *://askvoprosy.com/* 19 | *://auespy.com/* 20 | *://big-blog.tistory.com/* 21 | *://bleepcoder.com/* 22 | *://brocante.dev/* 23 | *://bugsdb.com/* 24 | *://buildwebhost.com/* 25 | *://c0debot.com/* 26 | *://c10106.tistory.com/* 27 | *://cache.one/* 28 | *://cainhuang.com/* 29 | *://catchconsole.com/* 30 | *://cnpnote.tistory.com/* 31 | *://coddingbuddy.com/* 32 | *://code-examples.net/* 33 | *://codebug.zone/* 34 | *://codehunter.cc/* 35 | *://codeproject.com/* 36 | *://coder-question-ko.com/* 37 | *://coder-question.com/* 38 | *://coder-solution.com/* 39 | *://coder.work/* 40 | *://coderbridge.com/* 41 | *://coderedirect.com/* 42 | *://coderoad.ru/* 43 | *://codestyle.tistory.com/* 44 | *://codetd.com/* 45 | *://codetrash.com/* 46 | *://codingkit.com/* 47 | *://csharppedia.com/* 48 | *://daedab.com/* 49 | *://daplus.net/* 50 | *://data-sc.net/* 51 | *://debugcn.com/* 52 | *://develop-bugs.com/* 53 | *://developreference.com/* 54 | *://dtuto.com/* 55 | *://e-learn.cn/* 56 | *://example-code.com/* 57 | *://exchangetuts.com/* 58 | *://firstlightsalon.in/* 59 | *://generacodice.com/* 60 | *://generacodice.it/* 61 | *://ghcc.net/* 62 | *://gitmemory.com/* 63 | *://gotxt.net/* 64 | *://hiengo.com/* 65 | *://holadevs.com/* 66 | *://hot-time.tistory.com/* 67 | *://i-harness.com/* 68 | *://iaxi.net/* 69 | *://ichi.pro/* 70 | *://idaemon.net/* 71 | *://idqna.madreview.net/* 72 | *://iiii.tistory.com/* 73 | *://inputbox.tistory.com/* 74 | *://intellipaat.com/* 75 | *://intrepidgeeks.com/* 76 | *://isolution.pro/* 77 | *://it-man.tistory.com/* 78 | *://it-reply.net/* 79 | *://it1352.com/* 80 | *://itbaoku.cn/* 81 | *://itboxs.tistory.com/* 82 | *://itecnote.com/* 83 | *://itectec.com/* 84 | *://itsource.tistory.com/* 85 | *://ittutorialpoint.com/* 86 | *://java2020.com/* 87 | *://javacodexamples.com/* 88 | *://javaer101.com/* 89 | *://javafixing.com/* 90 | *://jike.in/* 91 | *://jonic.cn/* 92 | *://kejisen.com/* 93 | *://kiwix.ounapuu.ee/* 94 | *://knews.vip/* 95 | *://ko.ojit.com/* 96 | *://krcodeblog.com/* 97 | *://localcoder.org/* 98 | *://lottogame.tistory.com/* 99 | *://lottoking.tistory.com/* 100 | *://manongdao.com/* 101 | *://melkia.dev/* 102 | *://messiahlebanon.org/* 103 | *://microeducate.tech/* 104 | *://minorman.tistory.com/* 105 | *://newbedev.com/* 106 | *://nicescript.tistory.com/* 107 | *://ogeek.cn/* 108 | *://optionbox.tistory.com/* 109 | *://ostack.cn/* 110 | *://presmarymethuen.org/* 111 | *://pretagteam.com/* 112 | *://procodes.tistory.com/* 113 | *://programqa.com/* 114 | *://programtip.tistory.com/* 115 | *://py4u.net/* 116 | *://python2.net/* 117 | *://python5.com/* 118 | *://pythonq.com/* 119 | *://qa.overstack.in/* 120 | *://radiobox.tistory.com/* 121 | *://randomtip.tistory.com/* 122 | *://recalll.co/* 123 | *://rotadev.com/* 124 | *://runebook.dev/* 125 | *://semicolonworld.com/* 126 | *://serveanswer.com/* 127 | *://smnggeophysics.com/* 128 | *://so.muouseo.com/* 129 | *://solveforum.com/* 130 | *://src-bin.com/* 131 | *://stackanswers.net/* 132 | *://stackguides.com/* 133 | *://stackoom.com/* 134 | *://stackovergo.com/* 135 | *://stackoverrun.com/* 136 | *://svcministry.org/* 137 | *://techhelpnotes.com/* 138 | *://thefunky-monkey.com/* 139 | *://thetopsites.net/* 140 | *://thinbug.com/* 141 | *://tonsu.in/* 142 | *://topgoodhosting.com/* 143 | *://tr.coredump.biz/* 144 | *://turismocomunitarioguatemala.com/* 145 | *://tutorialmeta.com/* 146 | *://ubuntugeeks.com/* 147 | *://uwenku.com/* 148 | *://voidcc.com/* 149 | *://w3bai.com/* 150 | *://webdevdesigner.com/* 151 | *://wekeepcoding.com/* 152 | *://wepython.cc/* 153 | *://wikiqube.net/* 154 | *://www.faqcode4u.com/* 155 | *://xspdf.com/* 156 | *://yingqusp.com/* 157 | /^.*:\/\/(?:askdev\.\w+|it\-(?:gundan\.\w+|swarm(?:\-ko\.\w+|\.\w+))|qastack\.\w+|stackovernet\.\w+)\// 158 | --------------------------------------------------------------------------------