如何使用 css 删除验证码图像及其文本框?

How to remove captcha image and it's textbox using css?

现在我正在为 chrome 构建扩展程序,它会自动填充站点的验证码,因此用户不需要在特定的 url.[=12= 上看到那个东西]

随着 url 出现自定义 css 文件以改进页面的 UI,但我不知道如何隐藏它。

我正在为其构建扩展的网站是:https://academics.vit.ac.in/student/stud_login.asp

这是为那一页量身定做的:

form[name="stud_login"] tr:nth-last-of-type(2),
form[name="stud_login"] tr:nth-last-of-type(3) {
  display: none;
}

它隐藏了包含验证码数据的两行。