XingBin Zhang

Results 8 comments of XingBin Zhang

这个问题不好修复,真正出错的地方应该在g2的一个依赖的@antv/util包中,就搁置了。如果遇到同类问题,可以使用 patch-package 工具给这个包打个补丁,自己就是这么解决的。期待有能力的大佬修复这个问题吧。

同问,请问解决了吗,怎么解决的。目前 mention 的节点渲染后没有特殊标识,无法覆盖样式。

Hi, maybe you can try [WebExtend](https://web-extend.github.io/web-extend/), a build tool for web extensions. It provides true HMR for content_scripts/popup/options..., and it's really lightning fast. Meanwhile, we provide [the migration document](https://web-extend.github.io/web-extend/guide/migration/vitesse-webext.html) that...

Hi. Maybe you can try [WebExtend](https://web-extend.github.io/web-extend/), a build tool for web extensions based on Rsbuild/Rspack. It covers all features provided by CRXJS.

同样需要这个功能。设计师给的 tooltip 几乎都是白底黑字的。

在编辑器组件 Editor 上,添加 `v-if` 指令试试。 ``` ```

嗨,可以试试 [WebExtend](https://github.com/web-extend/web-extend),它提供了很多与 WXT 相似的功能,关键是可以很好地解决上面的两个缺点。 ## 同步的内容脚本 WebExtend 中,内容脚本是同步的,和原始的内容脚本写法无差异,没有 WXT 中的心智负担。示例如下。 ```ts // src/content.ts import './index.css'; import type { ContentScriptConfig } from 'web-extend' let root = document.getElementById('web-extend-content'); if (!root) { root...