Advertisement
Guest User

Startpage.com search titles userscript

a guest
Nov 16th, 2020
1,290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Startpage.com search titles
  3. // @namespace    https://startpage.com/
  4. // @version      1.0
  5. // @description  Update Startpage.com search page titles with the search term so the tabs are easier to organize.
  6. // @author       Author
  7. // @match        https://startpage.com/sp/search*
  8. // @match        https://startpage.com/do/dsearch*
  9. // @match        https://www.startpage.com/sp/search*
  10. // @match        https://www.startpage.com/do/dsearch*
  11. // @grant        none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15.     'use strict';
  16.     document.title = `${document.getElementById('q').value} - Startpage.com search results`;
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement