Last active
May 20, 2025 14:52
-
-
Save DanielGibson/3b7a69ef67593916a66c7b976456ba0a to your computer and use it in GitHub Desktop.
Greasemonkey script to fix window (tab) title of startpage.com to include search term
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
// ==UserScript== | |
// @name Startpage.com search titles | |
// @namespace https://startpage.com/ | |
// @version 1.0 | |
// @description Update Startpage.com search page titles with the search term so the tabs are easier to organize. | |
// @author reizuki | |
// @match https://startpage.com/sp/search* | |
// @match https://startpage.com/do/dsearch* | |
// @match https://www.startpage.com/sp/search* | |
// @match https://www.startpage.com/do/dsearch* | |
// @grant none | |
// from https://pastebin.com/VTMEpNSP via | |
// https://www.reddit.com/r/privacytoolsIO/comments/jv5a31/startpagecom_show_search_term_in_title_a_useful/ | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.title = `${document.getElementById('q').value} - Startpage.com search results`; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment