dumpKremlebots 作者: Oleg
JS addon to delete posts of kremlebots on 2ch.org
無使用者無使用者
擴充套件後設資料
關於此擴充套件
It just deletes messages from DOM
// choose all posts of thread
allPosts = document.getElementsByClassName("post__message ")
}
// choose all posts of thread
allPosts = document.getElementsByClassName("post__message ")
for (let i = 0; i < allPosts.length; i++) {
postText = allPosts[i].textContent.trim().replace('(OP)', '').toLowerCase()
postText = postText.replace(/\>+(\d+)>/g, '').replace(/\>+(\d+)/g, '')
if (lahtaShit.some(word => postText.includes(word))) {
allPosts[i].style.border = '3px solid green'
allPosts[i].textContent = 'LAHTA REMOVED'
}
}
}
由 1 位評論者給出 0 分
權限與資料
更多資訊
- 版本
- 2.0
- 大小
- 13.93 KB
- 最近更新
- 3 個月前 (2026年1月18日)
- 相關分類
- 授權條款
- MIT License
- 版本紀錄
- 新增至收藏集