StackOverflow: Easy select question header

Remove the hyperlink from the question header to make it easy to select

  1. // ==UserScript==
  2. // @name StackOverflow: Easy select question header
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.21
  5. // @description Remove the hyperlink from the question header to make it easy to select
  6. // @author Hoangnq206
  7. // @license MIT
  8. // @match *://*stackoverflow.com/questions/*
  9. // @match *://*stackexchange.com/questions/*
  10. // @match *://*serverfault.com/questions/*
  11. // @match *://*superuser.com/questions/*
  12. // @match *://*askubuntu.com/questions/*
  13. // @match *://*stackapps.com/questions/*
  14. // @match *://*mathoverflow.net/questions/*
  15. // @icon https://www.google.com/s2/favicons?sz=64&domain=stackoverflow.com
  16. // @grant none
  17. // ==/UserScript==
  18.  
  19. window.jQuery("#question-header .question-hyperlink").wrapInner("<div/>").children(0).unwrap().addClass('question-hyperlink');

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址