website name changer

Change a website name to whatever you want! (not the url, just the title)

  1. // ==UserScript==
  2. // @name website name changer
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.2
  5. // @description Change a website name to whatever you want! (not the url, just the title)
  6. // @author twarped
  7. // @match http*://*/*
  8. // @exclude docs.google.com/*/*
  9. // @exclude sites.google.com/*/edit
  10. // @grant none
  11. // ==/UserScript==
  12. var changerbutton = document.createElement("button")
  13. changerbutton. innerHTML = "Change Website Title"
  14. var button = document.getElementsByTagName("body")[0]
  15. button.appendChild(changerbutton)
  16. changerbutton.addEventListener("click",function(){
  17. var title = prompt("Change Website title to","")
  18. if(title != null){
  19. document.title = title
  20. }
  21.  
  22. })

QingJ © 2025

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