Geekhub Title fix

修复Geekhub 标题问题

  1. // ==UserScript==
  2. // @name Geekhub Title fix
  3. // @namespace http://ora.moe/
  4. // @version 0.1
  5. // @description 修复Geekhub 标题问题
  6. // @author H503mc
  7. // @match https://*.geekhub.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. try{
  13. document.title=document.querySelector(".p-3.text-xl.heading").innerText+" - Geekhub :: The stuff we care about"
  14. }catch(e){
  15. console.error("Error catched \n"+e.name+" "+e.message)
  16. document.title="Geekhub :: The stuff we care about"
  17. }