Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==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 Author
- // @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
- // ==/UserScript==
- (function() {
- 'use strict';
- document.title = `${document.getElementById('q').value} - Startpage.com search results`;
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement