feat(userscripts): update google search sidebar for current DOM#18
Merged
Conversation
- Update selectors to match Google's 2026 DOM structure - Add persistent left sidebar with time/verbatim filters - Highlight search terms with primary color (#ff6a34) - Only run on "All" results (exclude Images, Videos, etc.) - Shift main content to accommodate sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Updates the Google Search Sidebar userscript to work with Google's current (2026) DOM structure. The original script by Jimmy Lin stopped working after Google restructured their search tools UI.
Key Changes
Updated CSS selectors for current Google DOM
#hdtbMenuswith#top_nav #hdtband related selectors.pZvJc,.XhWQv.sjVJQd,.vH6rvf.FJCJfdfor filter menusPersistent sidebar with time/verbatim filters
Search term highlighting
<em>tags (search terms) with the primary color (#ff6a34)Scope limited to "All" results
tbm=andudm=URL paramsDesign Decisions
The script uses CSS-only approach (same as the original) for maximum compatibility and minimal overhead. The sidebar overlays on top of the page and shifts the main content rather than being positioned absolutely, which handles responsive layouts better.
Selectors target Google's current class names which may change over time. The script runs at
document-startto inject styles before render, preventing layout shift.