website name changer

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

当前为 2019-07-27 提交的版本,查看 最新版本

// ==UserScript==
// @name         website name changer
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Change a website name to whatever you want! (not the url, just the title)
// @author       twarped
// @match        http*://*/*
// @grant        none
// ==/UserScript==
var changerbutton = document.createElement("button")
changerbutton. innerHTML = "Change Website Title"
var button = document.getElementsByTagName("body")[0]
button.appendChild(changerbutton)
changerbutton.addEventListener("click",function(){
var title = prompt("Change Website title to","")
if(title = null){
document.getElementsByTagName("title").innerHTML = title;
}

})