Greasy Fork is available in English.

去除标题中的(消息提示)

知乎,CSDC等网站打开时,浏览器的标题栏会显示消息提示,例如[(10条消息)首页 - 知乎],[(5条消息)某CSDN博客]。本脚本可以去除标题中括号里的消息这一段文字,简化标签。

< Feedback on 去除标题中的(消息提示)

Question/comment

§
Posted: 13-12-2020

let i=s.indexOf('(')
let n=s.substr(1,1)
let j=s.indexOf(')')

if (i==0 && n>0){
x.innerHTML=s.substring(j+1).trim()
}

§
Posted: 13-12-2020
§
Posted: 02-08-2021

@冤犯

let i=s.indexOf('(') let n=s.substr(1,1) let j=s.indexOf(')') if (i==0 && n>0){ x.innerHTML=s.substring(j+1).trim() }

你这个处理的比原作者更好一些👍

Post reply

Sign in to post a reply.