├── LICENSE ├── README.md └── uBlocklist.txt /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Jean-Hadrien Chabran 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # code-search-blocklist 2 | 3 | A list of domains hosting scrapped code snippets and polluting search results to block. 4 | 5 | Use [Blacklist](https://chrome.google.com/webstore/detail/ublacklist/pncfbmialoiaghdehhbnbhkkgmjanfhe?hl=en) to prevent them to appear in the search results. 6 | 7 | ➡️ See [uBlocklist.txt](uBlocklist.txt) 8 | -------------------------------------------------------------------------------- /uBlocklist.txt: -------------------------------------------------------------------------------- 1 | *://*.codegrepper.com/* 2 | *://*.w3schools.com/* 3 | *://*.geeksforgeeks.org/* 4 | *://*.stackshare.io/* 5 | *://*.tutorialspoint.com/* 6 | *://*.answeright.com/* 7 | *://*.askdev.info/* 8 | *://*.askdev.io/* 9 | *://*.blogmepost.com/* 10 | *://*.c-sharpcorner.com/* 11 | *://*.code-examples.net/* 12 | *://*.codegrepper.com/* 13 | *://*.codeflow.site/* 14 | *://*.gitmemory.cn/* 15 | *://*.gitmemory.com/* 16 | *://*.intellipaat.com/* 17 | *://*.javaer101.com/* 18 | *://*.programmerstart.com/* 19 | *://*.programmersought.com/* 20 | *://*.qastack.com* 21 | *://*.roboflow.ai/* 22 | *://*.stackanswers.net/* 23 | *://*.stackoom.com/* 24 | *://*.stackovernet.com/* 25 | *://*.stackovernet.xyz/* 26 | *://*.stackoverrun.com/* 27 | *://*.thetopsites.net/* 28 | *://*.ubuntugeeks.com/* 29 | *://*.cyberciti.biz/* 30 | *://*.ispycode.com/* 31 | *://*.reposhub.com/* 32 | *://*.githubmemory.com/* 33 | *://*.issueexplorer.com/* 34 | *://*.tabnine.com/* 35 | *://*.gitcode.net/* 36 | *://*.command-not-found.com/* 37 | *://*.im-coder.com/* 38 | *://*.i-harness.com/* 39 | *://*.hotexamples.com/* 40 | *://*.findbestopensource.com/* --------------------------------------------------------------------------------