JS中将斜体字体更改为标准字体的脚本

发布于 2024-12-23 13:30:51 字数 327 浏览 0 评论 0原文

我使用的是 Chrome,在 Twitter 上,它不会以斜体显示阿拉伯字体,尤其是在个人资料的“简介”部分中。所以我检查了bio元素,发现如果我修改CSS elemnt .bio并删除“斜体”,它将完美地显示bio。

之前

之后

我需要一个用户脚本来为我做到这一点。我不擅长 JavaScript,所以我想知道是否有人可以帮助我。

I'm using Chrome and on Twitter it doesn't show the Arabic font while in italic, especially in the Bio section on the person's profile. So I inspected the bio element and I found out that if I modified the CSS elemnt .bio and erased the "italic" it will show the bio perfectly.

Before

After

I need a userscript to do that for me. I'm not good at Java Script and so I was wondering if anybody can help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-12-30 13:30:51

您只需要更强大的 CSS 规则,而不是 JavaScript:

.bio {font-style:normal !important;}

您可以使用 Stylish 为页面添加样式的插件,类似于GreaseMonkey添加脚本的方式。

You just need a stronger CSS rule, not JavaScript:

.bio {font-style:normal !important;}

You can use the Stylish plugin to add styles to pages, similar to the way GreaseMonkey adds scripts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文