Appearance
网址
查看网址。移动端小屏幕,视野受限。
javascript:window.alert(window.location.href)查看标题。
javascript:window.alert(document.title)查看标题、网址。
javascript:window.alert(JSON.stringify({name: document.title, url: window.location.href}))回到主页。
javascript:window.location.href = window.location.origin去除网址查询字符串。 PC 端抖音搜索、移动端微博搜索,都会添加查询字符串,如果想要纯净的网址,需要处理下。
javascript:window.location.href = window.location.href.split('?')[0]去除网址查询字符串并且。
javascript:window.location.href = window.location.href.split('&')[0]