Guest User

Untitled

a guest
Sep 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Let Logo Link to Questions page
  3. // @match *://*.stackexchange.com/*
  4. // @match *://*.stackoverflow.com/*
  5. // @match *://*.superuser.com/*
  6. // @match *://*.serverfault.com/*
  7. // @match *://*.askubuntu.com/*
  8. // @match *://*.stackapps.com/*
  9. // @match *://*.mathoverflow.net/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. $("a.site-header--link").each(function() { $(this).attr('href', $(this).attr('href') + "/questions"); })
  15. });
Add Comment
Please, Sign In to add comment