AI intelligent summary
GPT
The article explains how to use uBlacklist to block Google Books results in Google Search. The author finds these results unhelpful and details the process of blocking them by creating regular expressions to match and block specific URLs. The piece also includes an analysis of the issue and encourages reader feedback.
1. Introduction to the article.
This article describes how to use uBlacklist to block Google Books book results in Google search. The author believes that these results are not useful to him, so he decided to block them and describes in detail how to implement it.
2. Summary of content.
The article first describes the Google Books book results that appear at the bottom of the Google search page and analyzes the origin of these results. Subsequently, the article proposes a way to block these results using uBlacklist, mainly by writing regular expressions to match and block URLs containing specific parameters.Finally, the authors encourage readers to share their thoughts and experiences in the comments section.
3. Summary of key points.
- Problem Description. Google searches show tons of useless Google Books book results.
- Problem Analysis. These results are confirmed to be from Google Books by URL Decode and are identified by specific parameters.
- Solution. Write uBlacklist rules using regular expressions to block URLs containing specific parameters.
I. Google Books book results in Google Search
Google normal search with presence at the bottom of the page
Many Google Books search results reason It's basically useless. and many other reasons, I decided to block it
Many people have similar problems
II. Analysis of the problem
After copying the web link URL Decode you can see that it is indeed
Google Books search results both (... and...) It's Google's doing. (math.) genus dq parameters : passes the search terms for the Google search itself
III. Solutions
1. Conventional wisdom
So it's possible to pass this directly
Searching for parameter passing features carry out an interceptionSo we can write the following rule for Google Book results in Google Search
/https?:\/\/books\.google\... ? \/. (\? |&)dq=. */iinterpretation of rules
This is a regular expression that matches URLs containing Google book searches. its pattern starts with https://或http://开头, followed by books.google, followed by one or more arbitrary characters (to avoid the ccTLD feature of Google searches), followed by a question mark or an "& ", then dq=, and finally zero or more arbitrary characters. This regular expression is case insensitive.
Main Reference Not available
acceptable become a member Telegram's Little Warehouse of Seven Rows | Internet Memories | Blogs cap Seven lines Technical Exchange Group Find more tips oh 🥰 and also discuss various issues in the chat group ❓
Welcome to the Bottom comment section. Share your thoughts and experiences with Let's discuss and improve together!
- Author:Qi Xing
- URL:https://blog.qixing1217.top/article/google-books-search-results-blocked-using-ublacklist
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!



