Cleans the brave search page.
Minimal Brave by Setsuwaa

Details
AuthorSetsuwaa
LicenseUnlicense
Categorysearch.brave.com
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Features
- Removes search suggestions
- Removes AI button (the AI feature is still available)
- Removes the Brave logo and browser download
- Removes the settings icon
Note that these only apply to search.brave.com only.
Source code
/* ==UserStyle==
@name Minimal Brave
@version 20250115.17.57
@namespace https://userstyles.world/user/Setsuwaa
@description Cleans the brave search page.
@author Setsuwaa
@license Unlicense
==/UserStyle== */
@-moz-document url("https://search.brave.com/") {
.example-searches {
visibility: hidden;
}
.download-cta {
visibility: hidden;
}
.svelte-1qo6czq {
visibility: hidden;
}
#submit-llm-button {
visibility: hidden;
margin-left: -40px;
}
.icon {
visibility: hidden;
}
}
@-moz-document url-prefix("https://search.brave.com/search") {
#searchform-actions {
visibility: hidden;
}
#settings-button {
visibility: hidden;
}
#quick-goggles-button {
visibility: hidden;
}
#chatllm-actions {
visibility: hidden;
margin-top: -86px;
}
#chatllm-conversation {
visibility: hidden;
}
.search-elsewhere-wrapper {
visibility: hidden;
margin-top: -50px;
margin-bottom: -50px;
}
}